forked from durgesh2001/HacktoHTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigateToProjects.html
72 lines (72 loc) · 2.5 KB
/
navigateToProjects.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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Project List</title>
<style>
body{
background-color: rgb(36, 31, 31);
}
.col-md-6{
background: #8fa1a1;
margin-top: 80px;
padding: 20px;
}
h3{
text-align: center;
font-weight: bold;
}
h4{
color: white;
font-size: 20px;
}
h4 a{
color: rgb(55, 107, 219);
text-decoration: none;
}
h6{
margin-left: 30px;
}
li{
margin-left: 20px;
font-size: 20px;
}
li a{
color: rgb(34, 62, 173);
text-decoration: none;
}
footer{
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 shadow-lg p-3 mb-5 bg-#ecf3f3f3 rounded">
<h3>Projects List</h3>
<hr>
<h6>Click to navigate across all the projects.</h6>
<ul>
<li><a href="business wesite/index.html">Business Website</a></li>
<li><a href="cv by using html and css/cv.html">CV by using HTML and CSS</a></li>
<li><a href="DoodlerGame/index.html">Doodler Game</a></li>
<li><a href="Drum Kit/index.html">Drum Kit</a></li>
<li><a href="Food Delivery Website/index.html">Food Delivery Website</a></li>
<li><a href="promptmove/index.html">PromptMove</a></li>
<li><a href="ResponsiveWebsite/Page.html">Responsive Website</a></li>
<li><a href="Simon Game/index.html">Simon Game</a></li>
<li><a href="TO-DO-LIST/index.html">TODO List</a></li>
<li><a href="Login Page.html">Login Page</a></li>
</ul>
</div>
</div>
</div>
<footer>
<h4>Code contributed by <a href='https://github.com/susverma' target='_blank'>@Sushant</a></h4>
</footer>
</body>
</html>