forked from dhruvpopuri/ca-apogee-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devs.html
75 lines (73 loc) · 2.09 KB
/
devs.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/main.css">
<title>Contact Developers | APOGEE CA</title>
<style>
body {
margin: 0;
display: flex;
flex-direction: column;
height: 100vh;
position: relative;
font-family: Coves;
}
section {
height: calc(100% - 100px);
margin-top: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 1;
}
ul {
padding: 0;
}
li {
text-align: center
}
li.name {
font-size: 2rem;
font-weight: bold;
}
li.email {
font-size: 1.5rem;
}
</style>
</head>
<body>
<header style="cursor: pointer" onclick="home()">
<label style="flex-direction: column; justify-content: center; ">
<p style="margin: 0; display: flex; align-items: center"><span>APOGEE</span><span>23</span><span> | BITS Pilani</span></p>
<p style="margin: 0; font-size: 1.05rem; color: #777">
</p>
</label>
<div id="menu">
<label onclick="home()">HOME</label>
</div>
</header>
<section class="lgn">
<h1>Developers</h1>
<p>
<ul style="list-style-type: none">
<li class="name">Popuri Sai Dhruv</li>
<li class="email">[email protected]</li>
</ul>
</p>
<p>
<ul style="list-style-type: none">
<li class="name">Sarthak Arora</li>
<li class="email">[email protected]</li>
</ul>
</p>
</section>
<script>
function home() {
window.location.href = "index.html";
}
</script>
</body>
</html>