-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (127 loc) · 4.49 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
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
<!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>JavaScript Basics Projects</title>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<!-- normalize -->
<link rel="stylesheet" href="./normalize.css" />
<!-- font-awesome -->
<link
rel="stylesheet"
href="./fontawesome-free-5.12.0-web/css/all.min.css"
/>
<!-- Stylesheet -->
<link rel="stylesheet" href="./global.css" />
</head>
<body>
<section class="section">
<h1 class="section-title">JavaScript Basics Projects</h1>
<ul class="projects">
<li class="project-title">
<a href="./01-color-flipper/index.html" target="_blank">
color flipper
</a>
</li>
<li class="project-title">
<a href="./02-counter/index.html" target="_blank"> counter </a>
</li>
<li class="project-title">
<a href="./03-reviews/index.html" target="_blank"> reviews</a>
</li>
<li class="project-title">
<a href="./04-navbar/index.html" target="_blank"> navbar </a>
</li>
<li class="project-title">
<a href="./05-sidebar/index.html" target="_blank"> sidebar </a>
</li>
<li class="project-title">
<a href="./06-modal/index.html" target="_blank"> modal </a>
</li>
<li class="project-title">
<a href="./07-questions/index.html" target="_blank"> questions </a>
</li>
<li class="project-title">
<a href="./08-menu/index.html" target="_blank"> menu </a>
</li>
<li class="project-title">
<a href="./09-video/index.html" target="_blank"> video </a>
</li>
<li class="project-title">
<a href="./10-scroll/index.html" target="_blank"> scroll </a>
</li>
<li class="project-title">
<a href="./11-tabs/index.html" target="_blank"> tabs </a>
</li>
<li class="project-title">
<a href="./12-countdown-timer/index.html" target="_blank">
countdown timer
</a>
</li>
<li class="project-title">
<a href="./13-lorem-ipsum/index.html" target="_blank">
lorem ipsum
</a>
</li>
<li class="project-title">
<a href="./14-grocery-bud/index.html" target="_blank">
grocery bud
</a>
</li>
<li class="project-title">
<a href="./15-slider/index.html" target="_blank"> slider </a>
</li>
<li class="project-title">
<a href="./16-counter/index.html" target="_blank"> counter OOP </a>
</li>
<li class="project-title">
<a href="./17-gallery/index.html" target="_blank"> gallery OOP </a>
</li>
<li class="project-title">
<a href="./18-numbers/index.html" target="_blank"> numbers </a>
</li>
<li class="project-title">
<a href="./19-dark-mode/index.html" target="_blank"> dark mode </a>
</li>
<li class="project-title">
<a href="./20-filters/index.html" target="_blank"> filters </a>
</li>
<li class="project-title">
<a href="./21-dad-jokes/index.html" target="_blank"> dad jokes </a>
</li>
<li class="project-title">
<a href="./22-products/index.html" target="_blank"> products </a>
</li>
<li class="project-title">
<a href="./23-random-user/index.html" target="_blank">
random User
</a>
</li>
<li class="project-title">
<a href="./24-cocktails/index.html" target="_blank"> cocktails </a>
</li>
<li class="project-title">
<a href="./25-slider/index.html" target="_blank"> ES6 slider </a>
</li>
<li class="project-title">
<a href="./26-stripe-submenus/index.html" target="_blank">
stripe submenus
</a>
</li>
<li class="project-title">
<a href="./27-pagination/index.html" target="_blank"> pagination </a>
</li>
<li class="project-title">
<a href="./28-wikipedia/index.html" target="_blank"> wikipedia </a>
</li>
<li class="project-title">
<a href="./29-comfy-store/index.html" target="_blank">
comfy store
</a>
</li>
</ul>
</section>
</body>
</html>