-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
65 lines (56 loc) · 2.72 KB
/
Copy pathcontact.html
File metadata and controls
65 lines (56 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ghazal Jamali Portfolio | Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Ghazal Jamali Portfolio" content="Contact with Ghazal Jamali">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<!-- Google fonts links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Notable&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
<!-- stylesheets (which I separated them for readibilty and DRY coding principle -->
<link rel="stylesheet" href="src/variables.css">
<link rel="stylesheet" href="src/layout-and-fonts.css">
<link rel="stylesheet" href="src/themes.css">
</head>
<body class="contact-page">
<nav class="navbar" data-bs-theme="dark">
<div class="container-fluid">
<ul class="navbar-nav mb-2 mb-lg-0 flex-row gap-md-4 gap-3 mx-sm-0 mx-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<main>
<div class="container p-md-5">
<h1 class="page-header text-center"> Get in <span class="word-touch">Touch</span> with me! </h1>
<div class="contact-info-box d-flex flex-column justify-content-evenly flex-wrap align-content-center gap-3 gap-md-5 p-5 border border-black border-2">
<span class="contact-info">
<i class="bi bi-envelope"></i>
Email:
<a class="email-link" href="mailto:ghazaljamali27@gmail.com">ghazaljamali27@gmail.com</a>
</span>
<span class="contact-info">
<i class="bi bi-linkedin"></i>
<a class="linkedin-link" href="https://linkedin.com/in/ghazal-jamali-40b277254">LinkedIn</a>
</span>
</div>
</div>
</main>
</body>
</html>