forked from PrishaAnand04/Capstone-BlockChain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (75 loc) · 1.62 KB
/
index.html
File metadata and controls
84 lines (75 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Capstone Projects</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.navbar {
background-color: #2c3e50;
padding: 1rem 2rem;
color: white;
}
.navbar h1 {
font-size: 1.8rem;
}
main {
flex: 1;
text-align: center;
padding: 60px 20px;
}
main h2 {
color: #333;
margin-bottom: 20px;
}
a {
display: inline-block;
margin: 15px;
font-size: 1.2rem;
text-decoration: none;
color: #0077cc;
background-color: #ffffff;
padding: 12px 20px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
transition: background-color 0.2s ease;
}
a:hover {
background-color: #e3f2fd;
}
footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="navbar">
<h1>Avikshipt</h1>
</div>
<main>
<h2>Welcome to Deloitte Capstone Projects</h2>
<p>Select a project to view:</p>
<a href="webiste01/index.html">🚀 Website 01 : Consumer View</a>
<a href="website02/index.html">🌐 Website 02 : Manager View</a>
</main>
<footer>
© 2025 Avikshipt | All rights reserved
</footer>
</body>
</html>