-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (74 loc) · 3.39 KB
/
index.html
File metadata and controls
91 lines (74 loc) · 3.39 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<title>8 JavaScript Projects</title>
</head>
<body>
<main>
<!--START OF TITLE SECTION-->
<h1 class="display-4 text-center my-5">8 Basic JavaScript Projects</h1>
<!--END OF TITLE SECTION-->
<!--START OF JS PROJECTS LIST SECTION-->
<div class="container text-center">
<ul class="list-unstyled">
<li class="mb-1">
<a href="https://unsplash-api-image-generator.netlify.app/"
class="text-decoration-none text-dark"
target="_blank">Unsplash API Image Generator
</a>
</li>
<li class="mb-1">
<a href="https://flashcards-with-local-storage.netlify.app"
class="text-decoration-none text-dark"
target="_blank">Flashcards with Local Storage
</a>
</li>
<li class="mb-1">
<a href="https://tip-calculator-by-daph.netlify.app/"
class="text-decoration-none text-dark"
target="_blank">Tip Calculator
</a>
</li>
<li class="mb-1">
<a href="https://pass-the-message-by-daph.netlify.app/"
class="text-decoration-none text-dark"
target="_blank">Pass The Message
</a>
</li>
<li class="mb-1">
<a href="https://random-quote-generator-by-daph.netlify.app"
class="text-decoration-none text-dark"
target="_blank">Random Quote Generator
</a>
</li>
<li class="mb-1">
<a href="https://random-hex-colors.netlify.app/"
class="text-decoration-none text-dark"
target="_blank">Random Hex Colors
</a>
</li>
<li class="mb-1">
<a href="https://change-color-background-by-daph.vercel.app/"
class="text-decoration-none text-dark"
target="_blank">Change Color Background
</a>
</li>
<li class="mb-1">
<a href="https://pixel-art-generator-by-daph.vercel.app/"
class="text-decoration-none text-dark"
target="_blank">Pixel Art Generator
</a>
</li>
</ul>
</div>
<!--END OF JS PROJECTS LIST SECTION-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</main>
</body>
</html>