-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
41 lines (41 loc) · 1.7 KB
/
contact.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<title>Contact Me!</title>
</head>
<body>
<header>
<h1>Warith Rahman</h1>
<nav>
<a href="index.html" class>Home</a>
<a href="resume.html" class>Resume</a>
<a href="contact.html" class="active">Contact</a>
</nav>
</header>
<main>
<div class="container">
<h2>How to Contact Me</h2>
<div class="row">
<ul>
<li>Email: <a href="mailto:warith@utexas.edu">warith@utexas.edu</a></li>
<li>Instagram: <a href="https://www.instagram.com/warithr_621/" target="_blank">warithr_621</a></li>
<li>Discord: <a href="https://discord.com/" target="_blank">walrusramen</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/warith-rahman/" target="_blank">
warith-rahman</a></li>
</ul>
</div>
</div>
</main>
<footer>
<p class="footnote"> Made by Warith Rahman via GitHub. Design inspired by <a href="https://www.ekzhang.com" target="_blank" style="color: lightgrey">Eric Zhang</a></p>
<p class="footnote">Last Updated November 22, 2024</p>
</body>
</html>