-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (73 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>10 Projects in 10 Hours</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id='preloader'>
<img
src="https://cdn.dribbble.com/users/107759/screenshots/2436386/media/22e1ee1c38dae78eaec97b55d6f78167.gif" />
</div>
<button onclick="openMenu()" class="open-menu">
<span></span>
<span></span>
<span></span>
</button>
<aside>
<div class="sidebar-layer"></div>
<div class="sidebar-layer"></div>
<div class="sidebar-layer">
<ul>
<li>
<a href="./1-countdown-timer/index.html">1- Countdown Timer</a>
</li>
<li><a href="./2-quiz-app/index.html">2- Quiz App</a></li>
<li>
<a href="./3-recipe-app/index.html">3- Recipe App</a>
</li>
<li>
<a href="./4-notes-app/index.html">4- Notes App</a>
</li>
<li><a href="./5-todo-app/index.html">5- ToDo App</a></li>
<li>
<a href="./6-movie-app/index.html">6- Movie App</a>
</li>
<li>
<a href="./7-github-profiles/index.html">7- GitHub Profiles</a>
</li>
<li>
<a href="./8-drawing-app/index.html">8- Drawing App</a>
</li>
<li>
<a href="./9-password-generator/index.html">9- Password Generator</a>
</li>
<li>
<a href="./10-weather-app/index.html">10- Weather App</a>
</li>
<li>
<a href="./11-browser-info/index.html">11- Browser Info</a>
</li>
<li>
<a href="./12-image-zoomer/index.html">12- Image Zoomer</a>
</li>
<li>
<a href="./13-preloader/index.html">13- PreLoader</a>
</li>
<li>
<a href="./14-upload-image/index.html">14- Upload Image</a>
</li>
</ul>
</div>
</aside>
<div onclick="closeMenu()" class="backdrop"></div>
<p id="auto-type"></p>
<h3>JavaScript Playground</h3>
<footer>
Built by Morteza Rezaienia
</footer>
<script src="./script.js"></script>
</body>
</html>