-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.31 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>lesson6</title>
</head>
<body id="body">
<div id="test">First</div>
<img class="image" src="images/dog.jpg" alt="dog" />
<h2>Article header</h2>
<div id="text">
<p class="p">First paragraph</p>
<p class="p">Second paragraph</p>
<p class="p">Third paragraph</p>
</div>
<p>Another text</p>
<div>
<ul id="list">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
</div>
<h1>I'am a big header!!!</h1>
<div id="myDiv">
<p class="par">First paragraph</p>
<p class="par">Second paragraph</pclass="par">
<p class="par">Third paragraph</p>
<p class="par">Fourth paragraph</p>
</div>
<ul id="myList">
<li class="horizontal" >Make</li>
<li class="horizontal">me</li>
<li class="horizontal">horizontal!</li>
</ul>
<span>Make me invisible, please!</span>
<input type="text" id="input1" value="Text1">
<input type="text" id="input2" value="Text2">
<script src="script.js"></script>
</body>
</html>