forked from florinpop17/10-projects-10-hours
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (65 loc) · 2.18 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
<!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>
<h3>YouTube Video:</h3>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/dtKciwk_si4"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<h3>Projects:</h3>
<ul>
<li>
<a target="_blank" href="countdown-timer/index.html"
>Countdown Timer</a
>
</li>
<li><a target="_blank" href="quiz-app/index.html">Quiz App</a></li>
<li>
<a target="_blank" href="recipe-app/index.html">Recipe App</a>
</li>
<li>
<a target="_blank" href="notes-app/index.html">Notes App</a>
</li>
<li><a target="_blank" href="todo-app/index.html">ToDo App</a></li>
<li>
<a target="_blank" href="movie-app/index.html">Movies App</a>
</li>
<li>
<a target="_blank" href="github-profiles/index.html"
>GitHub Profiles</a
>
</li>
<li>
<a target="_blank" href="drawing-app/index.html">Drawing App</a>
</li>
<li>
<a target="_blank" href="password-generator/index.html"
>Password Generator</a
>
</li>
<li>
<a target="_blank" href="weather-app/index.html">Weather App</a>
</li>
</ul>
<footer>
Built with 💜 by
<a target="_blank" href="https://florin-pop.com">Florin Pop</a>.
Code on
<a
target="_blank"
href="https://github.com/florinpop17/10-projects-10-hours"
>Github</a
>
</footer>
</body>
</html>