-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (78 loc) · 1.87 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Modern HTML & CSS 2</title>
<style>
.content {
display: flex;
}
li {
list-style: circle;
font-size: 20px;
}
li a {
display: inline-block;
text-decoration: none;
padding: 10px;
div h2 {
text-align: center;
}
color: black;
}
li a:hover {
color: blue;
}
.container {
margin: 0px 20px;
}
.Website a {
text-decoration: none;
font-size: 20px;
color: black;
}
.Website a:hover {
color: blue;
}
.Website {
padding-left: 20px;
padding-right: 20px;
}
.project .Website {
display: flex;
align-items: center;
padding-right: 20px;
padding-left: 20px;
}
</style>
</head>
<body>
<div class="content">
<div class="HTML_CSS">
<h2>HTML</h2>
<ul>
<li>
<a href="/02_typography.html">Heading, Paragraph, Typography</a>
</li>
<li>
<a href="/03_lInks_and_images.html">Links, Images & Attributes</a>
</li>
<li><a href="/04_list_tables.html">List & Tables</a></li>
<li><a href="/05_forms_inputs.html">Forms and Inputs</a></li>
<li>
<a href="/06_block_and_iniline_element.html"
>Block and Inline Elements</a
>
</li>
<li>
<a href="/07_div_Id_class.html">Div, Id and class</a>
</li>
<li><a href="/08_Entities.html">Entities</a></li>
</ul>
<br />
</div>
</div>
</body>
</html>