-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactinfo.html
117 lines (101 loc) · 4.86 KB
/
contactinfo.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<title>Meshach's Portfolio</title>
<meta name="viewport" content="width=device-width" />
<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=Roboto:wght@300&display=swap" rel="stylesheet">
<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=Raleway:wght@900&display=swap" rel="stylesheet">
<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=IBM+Plex+Mono:wght@200;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/74ae88ea8d.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/styles-mobile.css">
<link rel="stylesheet" href="styles/styles-large-mobile.css">
<link rel="stylesheet" href="styles/styles-tablet.css">
<link rel="stylesheet" href="styles/styles-laptop.css">
<link rel="stylesheet" href="styles/styles-desktop.css">
</head>
<body>
<div class="blur-zone"></div>
<header>
<nav>
<div class="left-header fade-2-5">
<a href="index.html"><img src="img/mlogo.jpeg" alt="meshach" id="logo"></a>
</div>
<div class="hamburger-parent">
<div></div>
<div></div>
<div></div>
</div>
<input type="checkbox" class="menu-switch">
<div class="header_links">
<ul class="nav-header fade-2-5">
<li><a href="about.html" class="burger-font-size">about</a></li>
<li><a href="FAQs.html" class="burger-font-size">FAQs</a></li>
<li><a href="qualifications.html" class="burger-font-size">skills</a></li>
<li><a href="contactinfo.html" class="burger-font-size">contact</a></li>
<li><a href="hobbies.html" class="burger-font-size">hobbies</a></li>
<li><a href="quote.html" class="burger-font-size">quotes</a></li>
</ul>
</div>
</nav>
</header>
<main id="contact">
<div class="contact-items">
<div class="contact-items">
<div class="contact-item">
<div class="icon"><i class="fa-solid fa-mobile-button fa-5x"></i></div>
<div class="contact-info">
<h1>Phone</h1>
<h2>
<script>document.write(`<a href="tel` + `:0` + `7772` + `6239` + `00">` + `0` + `777262` + `390` + `0</a>`)</script>
</h2>
<h2>
<script>document.write(`<a href="te` + `l:` + `020` + `84595158">02` + `0845951` + `58</a>`)</script>
</h2>
<h2>
<script>document.write(`<a href="tel` + `:012` + `34567890">012` + `345678` + `90</a>`)</script>
</h2>
</div>
</div>
</div>
<div class="contact-item">
<div class="icon"><i class="fa-solid fa-envelope fa-5x"></i></div>
<div class="contact-info">
<h1>Email</h1>
<h2>
<script>document.write(`<a href="mail` + `to:meshach` + `manzano` + `@gmail.` + `com">mesh` + `achmanz` + `ano@` + `gm` + `ail.com</a>`)</script>
</h2>
<h2>
<script>document.write(`<a href="mail` + `to:mes` + `hachman@` + `aol.` + `com">me` + `shachman@` + `ao` + `l.com</a>`)</script>
</h2>
<h2>
<script>document.write(`<a href="mail` + `to:croo` + `kedco` + `der@` + `hack.c` + `om">crooke` + `dcoder@` + `hack.c` + `om</a>`)</script>
</h2>
</div>
</div>
<div class="contact-item">
<div class="icon"><i class="fa-solid fa-location-dot fa-5x"></i></div>
<div class="contact-info">
<h1>Address</h1>
<h2>Willesden</h2>
<h2>London</h2>
<h2>United Kingdom</h2>
</div>
</div>
</div>
</main>
<footer>
<ul class="nav-footer fade-2-5">
<li>Copyright © 2022 Meshach Manzano</li>
<li><a href="privacy-notice.html">privacy notice</a></li>
</ul>
</footer>
<script src="js/index.js"></script>
</body>
</html>