-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 2.29 KB
/
Copy pathindex.html
File metadata and controls
50 lines (46 loc) · 2.29 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
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>learn css</title>
<link rel="stylesheet" href="style.css">
<style>
a{
text-decoration: none;
color: hsl(0, 1%, 58%);
}
a:hover{
background-color: aqua;
}
</style>
</head>
<body>
<h1>ALL INDEX.HTML(you can inspect to see code and learn)</h1>
<a href="01_LESSON/index.html">01_LESSON()</a> <br>
<a href="02_LESSON(Selector)/index.html">02_LESSON(Selector)</a> <br>
<a href="03_LESSON(Color)/index.html">03_LESSON(Color)</a> <br>
<a href="04_LESSON(Fonts)/index.html">04_LESSON(Fonts)</a><br>
<a href="05_LESSON(Border)/index.html">05_LESSON(Border)</a><br>
<a href="06_LESSON(Shadow)/index.html">06_LESSON(Shadow)</a><br>
<a href="07_LESSON(Margins)/index.html">07_LESSON(Margins)</a><br>
<a href="08_LESSON(Float)/index.html">08_LESSON(Float)</a><br>
<a href="09_LESSON(Overflow)/index.html">09_LESSON(Overflow)</a><br>
<a href="10_LESSON(Display)/index.html">10_LESSON(Display)</a><br>
<a href="11_LESSON(Height and Width)/index.html">11_LESSON(Height and width)</a><br>
<a href="12_LESSON(Position)/index.html">12_LESSON(Position)</a><br>
<a href="13_LESSON(bg image)/index.html">13_LESSON(bg image)</a><br>
<a href="14_LESSON(Combinators)/index.html">14_LESSON(Combinators)</a><br>
<a href="15_LESSON(Pseudo-classes)/index.html">15_LESSON(Pseudo-classes)</a><br>
<a href="16_LESSON(pseudo-element)/index.html">16_LESSON(pseudo-element)</a><br>
<a href="17_LESSON(Pagination)/index.html">17_LESSON(Pagination)</a><br>
<a href="18_LESSON(Dropdown)/index.html">18_LESSON(Dropdown)</a><br>
<a href="19_LESSON(Navigation)/index.html">19_LESSON(Navigation)</a><br>
<a href="20_LESSON(Layout)/index.html">20_LESSON(Layout)</a><br>
<a href="21_LESSON(Image Gallery)/index.html">21_LESSON(Image Gallery)</a><br>
<a href="22_LESSON(Icons)/index.html">22_LESSON(Icons)</a><br>
<a href="23_LESSON(Flexbox)/index.html">23_LESSON(Flexbox)</a><br>
<a href="24_LESSON(Transformation)/index.html">24_LESSON(Transformation)</a><br>
<a href="25_LESSON(Animation)/index.html">25_LESSON(Animation)</a><br>
</body>
</html>