-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (66 loc) · 2.46 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
<!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="./index.css">
<title>Mini Games</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #222;
color: #eee;
margin: 0;
padding: 0;
}
h1{
margin: 50px auto;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #333;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.container>div a {
display: block;
text-decoration: none;
color: #eee;
padding: 10px 20px;
margin: 10px 0;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.container a:hover {
background-color: #555;
}
</style>
</head>
<body>
<h1>Mini Games built with JavaScript</h1>
<div class="container">
<div> <a href="/tic-tac-toe/index.html">1. Tic-tac-toe</a></div>
<div> <a href="/rockpaperscissors/index.html">2. Rock Paper Scissors</a></div>
<div> <a href="/currency-converter/index.html">3. Currency Converter</a></div>
<div> <a href="/Calculator/index.html">4. Caculator</a></div>
<div> <a href="/Weather-App/index.html">5. Weather App</a></div>
<div> <a href="/Dictionary-App/index.html">6. Dictionary App</a></div>
<div> <a href="/Password-Generator/index.html">7. Password Generator</a></div>
<div> <a href="/QR-Code-Generator/index.html">8. QR Code Generator</a></div>
<div> <a href="/Quick Sign/index.html">9. Quick Sign</a></div>
<div> <a href="/circle-game/index.html">10. Circle Game</a></div>
<div> <a href="/Print-Numbers/index.html">11. Print Numbers</a></div>
<div> <a href="/BBQuotes-API/index.html">12. Random Breaking Bad Quotes</a></div>
</div>
<div id="quote-container" style="bottom: 50px;">
<p id="quote" style="font-style: italic;"></p>
<p id="author" style="font-style: bold;"></p>
</div>
<div id="bottom-bar" >
Made with ❤️ by <a href="https://github.com/ubednama" style="color: white;">ubednama</a>
</div>
<script src="./BBQuotes-API/quotes.js"></script>
</body>
</html>