-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (102 loc) · 3.88 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Ubuntu&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap"
rel="stylesheet"
/>
<!-- CSS -->
<link rel="stylesheet" href="styles.css" />
<title>Projects links</title>
</head>
<body>
<section id="big-container">
<section id="top">
<div class="title">
<h1 class="title-heading">Here are all the Projects Links.</h1>
<p class="title-p">
Click the one that interests you and checkout the github Repository
of the 100 Days of web development for the code and resources of the
project.
</p>
</div>
</section>
<section id="main">
<div class="container">
<ul class="main-ul">
<li class="main-li">
<h2 class="main-h2">Project 1 : A Resume using just HTML.</h2>
<button><a href="./CV1/index.html">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 2 : Second Resume using HTML CSS and BOOTSTRAP.</h2>
<button><a href="./CV2/CSS-MySite/index.html">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 3 : TinDog project, Tinder for Dogs.</h2>
<button>
<a
href="./Tindog - tinder for dogs/TinDog-Start-master/index.html"
>Visit</a
>
</button>
</li>
<li class="main-li">
<h2>Project 4 : Dice Game.</h2>
<button><a href="./Dicee Challenge/dicee.html">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 5 : Drum Kit.</h2>
<button><a href="./Drum Kit/index.html">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 6 : Simon Game.</h2>
<button><a href="./Simon game/index.html">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 7 : Portfolio Website.</h2>
<button><a href="./Portfolio/index.html">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 8 : Analog clock</h2>
<button><a href="./Analog Clock/index.html">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 9 : Rock Paper Scissors</h2>
<button>
<a href="./Rock Paper Scissors/single-player.html">Visit</a>
</button>
</li>
<li class="main-li">
<h2>Project 10 : To do List using React</h2>
<button><a href="https://todo-list-using-react-3vr788mch-sunny-64.vercel.app/">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 11 : Secrets</h2>
<button><a href="https://secret-chi.vercel.app">Visit</a></button>
</li>
<li class="main-li">
<h2>Project 12 : News App</h2>
<button><a href="https://news-app-1vy4.vercel.app/">Visit</a></button>
</li>
</ul>
</div>
</section>
<section id="footer">
<p>© Sunny</p>
</section>
</section>
</body>
</html>