-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
65 lines (54 loc) · 2.16 KB
/
contact.html
File metadata and controls
65 lines (54 loc) · 2.16 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS STYLES -->
<link rel="stylesheet" href="./../assets/css/contact.css">
<link rel="stylesheet" href="./../assets/css/navbar.css">
<!-- FONT AWESOME ICON -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<title>Contact</title>
</head>
<body>
<header>
<nav>
<div class="logo-wrap">
<a href="#" class="logo">Contact Me</a>
</div>
<div class="nav-items " id="nav-item-wrap">
<a href="./../brand.html" class="nav-links">Home</a>
<a href="./skills.html" class="nav-links">Skills</a>
<a href="./about.html" class="nav-links">About</a>
<a href="#" class="nav-links">Contact</a>
</div>
<div class="hamburger-wrap" id="menu-options" onclick="toggleNavbar()">
<i class="hamburger fas fa-bars"></i>
</div>
</nav>
</header>
<main>
<h3 class="page-title">Contact Me</h3>
<div class="contact-types">
<div class="contact">
<i class="fas fa-location-arrow"></i>
<h3>Address</h3>
<p>123 street, Winterfell</p>
</div>
<div class="contact">
<a href="mailto:pamelaodeh@gmail.com"><i class="fas fa-envelope"></i></a>
<h3>Email</h3>
<p>pamelaodeh@gmail.com</p>
</div>
<div class="contact">
<a href="tel:08122773761"><i class="fas fa-phone-alt"></i></a>
<h3>Phone</h3>
<p>+234xxxxxx6</p>
</div>
</div>
</main>
<!-- HAMBURGER LOGO -->
<script src="./../assets/js/hamburger.js"></script>
</body>
</html>