-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (69 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
74 lines (69 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Randomness</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fontgis.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="https://www.favicon.cc/logo3d/510460.png">
</head>
<body>
<nav>
<div class="logo">
<a href="index.html">Randomness</a>
</div>
<ul class="menu">
<li><a href="https://www.freecodecamp.org/news/random-number-generator/" target="_blank">Learn More about Randomness</a></li>
<li><a href="https://linktr.ee/paramashivakaranth" target="_blank">Contact</a></li>
</ul>
</nav>
<div class="bg"></div>
<div class="bg bg2"></div>
<div class="bg bg3"></div>
<div class="container">
<a href="color/index.html">
<div class="content colors">
<h1>Random color generator</h1>
</div>
</a>
<a href="number/index.html">
<div class="content matrix">
<canvas id="c"> </canvas>
<h1 class="numbersText">Random Number generator</h1>
</div>
</a>
<a href="joke/joke.html">
<div class="content joke">
<h1 class="JokeText">Generate Random Joke</h1>
</div>
</a>
<a href="progjoke/joke.html">
<div class="content progjoke">
<h1 class="progJokeText">Generate Programming Random Joke</h1>
</div>
</a>
<a href="meme/meme.html">
<div class="content memes">
<h1 class="memesText">Random Meme generator</h1>
</div>
</a>
<a href="progmeme/meme.html">
<div class="content progmemes">
<h1 class="progmemesText">Random Programming Meme generator</h1>
</div>
</a>
<!-- <a href="">
<div class="content cities">
<h1 class="citiesText">Coming Soon</h1>
</div>
</a>
<a href="">
<div class="content countries">
<h1 class="countriesText">Coming Soon</h1>
</div>
</a> -->
</div>
<script src="index.js"></script>
</body>
</html>