-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (32 loc) · 1.11 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="This is an example of a meta description.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title></title>
</head>
<body>
<h1>This is a header</h1>
<a href="index.html">This is a link to the same page!</a>
<br><br>
<div class="list-example-1">
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
</div>
<br>
<div class="list-example-2">
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
<p>Paragraph 4</p>
</div>
<br>
<p class="element-1">This is a "::first-line" example.</p>
<p class="element-2">This is a "::first-letter" example.</p>
<p class="element-3">This is a "::selection" example.</p>
<p class="element-4" href="index.html" daniel="my name"> - This is a "::before" and "::after" example.</p>
</body>
</html>