-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
47 lines (43 loc) · 1.62 KB
/
contact.html
File metadata and controls
47 lines (43 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
<!DOCTYPE html>
<html>
<head>
<title>Cloak - End to End Encryption In Your Hands</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<main>
<h1>Contact Us</h1>
<p>Developed at VIT Chennai by</p>
<ul>
<li>Santhanam <a href="https://github.com/porridgewithraisins">(github.com)</a></li>
<li>Shreejith <a href="https://github.com/shreejithsg">(github.com)</a></li>
<li>Prathibha <a href="https://github.com/caramelpudding11">(github.com)</a></li>
<li>Jyothssena <a href="https://github.com/jyothssena">(github.com)</a></li>
</ul>
<p>As part of a project component of the cybersecurity course</p>
<p style="margin-top: 0">
taught by Prof. Subbulakshmi T
<a href="https://chennai.vit.ac.in/member/dr-subbulakshmi-t">(chennai.vit.ac.in)</a>
</p>
</main>
<style>
main {
margin-left: 0.2rem;
}
a {
color: #8be9fd;
}
p {
text-align: center;
}
</style>
</body>
</html>