-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHroad.html
133 lines (93 loc) · 3.75 KB
/
Hroad.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Roadmap</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
h2, h3 {
text-align: center;
margin-top: 20px;
color: #333;
font-size: 20px;
}
.container {
max-width: 700px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.links-section {
margin-top: 20px;
}
.link{
display: block;
font-size: 18px;
color: #000000;
text-decoration: none;
margin: 10px 0;
padding: 10px 20px;
width: 50%;
margin-left: 150px;
/* border: 1px solid rgb(73, 0, 0); */
background-color: #e9ecef;
color: rgb(0, 0, 0);
border-radius: 9px;
transition: background-color 0.3s ease;
text-align: center;
border: 1px solid black;
}
.link:hover {
color: rgb(255, 0, 0);
}
a{
text-decoration: none;
color: rgb(0, 0, 0);
}
@media screen and (orientation: portrait) {
.link{
margin-left: 46px;
width: 70%;
}
}
</style>
</head>
<body>
<div class="container">
<h3 class="h3-class">Full HTML Course Playlist</h3>
<div class="links-section">
<a class="link" href="https://www.youtube.com/playlist?list=PLu0W_9lII9agq5TrH9XLIKQvv0iaF2X3w">HTML Playlist</a>
</div>
<div class="Projects">
<h3>HTML Projects Repository</h3>
<a class="link" href="https://github.com/kokonior/HTML-Projects.git">Projects Repository</a>
</div>
<div class="quizes">
<h3>Quizes</h3>
<a class="link" href="https://www.bing.com/ck/a?!&&p=882ee3e328f5a4e1JmltdHM9MTcxODg0MTYwMCZpZ3VpZD0yNzY3YTQwMi1lNWQ2LTY4OGMtMjhjMi1iMDk3ZTRiZDY5MjEmaW5zaWQ9NTIwNw&ptn=3&ver=2&hsh=3&fclid=2767a402-e5d6-688c-28c2-b097e4bd6921&psq=online+HTML+quizes&u=a1aHR0cHM6Ly93d3cudzNzY2hvb2xzLmNvbS9IVE1ML2h0bWxfcXVpei5hc3A&ntb=1">HTML Quizes</a>
</div>
<div class="articles">
<h3>Articles</h3>
<a class="link" href="https://www.bing.com/ck/a?!&&p=82460e837ee7080dJmltdHM9MTcxODg0MTYwMCZpZ3VpZD0yNzY3YTQwMi1lNWQ2LTY4OGMtMjhjMi1iMDk3ZTRiZDY5MjEmaW5zaWQ9NTMxMg&ptn=3&ver=2&hsh=3&fclid=2767a402-e5d6-688c-28c2-b097e4bd6921&psq=articles+for+html+practice&u=a1aHR0cHM6Ly93d3cuZnJlZWNvZGVjYW1wLm9yZy9uZXdzL2ludHJvZHVjdGlvbi10by1odG1sLWJhc2ljcy8&ntb=1">HTML Practice Article</a>
</div>
<div class="cheatsheet">
<h3>HTML Cheatsheet</h3>
<a class="link" href="https://www.bing.com/ck/a?!&&p=cf367bc54e6b7f51JmltdHM9MTcxODg0MTYwMCZpZ3VpZD0yNzY3YTQwMi1lNWQ2LTY4OGMtMjhjMi1iMDk3ZTRiZDY5MjEmaW5zaWQ9NTIxOA&ptn=3&ver=2&hsh=3&fclid=2767a402-e5d6-688c-28c2-b097e4bd6921&psq=html+cheatsheet&u=a1aHR0cHM6Ly9odG1sY2hlYXRzaGVldC5jb20v&ntb=1">HTML Cheatsheet</a>
</div>
</div>
</div>
</body>
</html>