-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
33 lines (29 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Information</title>
<link rel="stylesheet" type="text/css" href="port.css">
<meta name="Description" content="Contact information">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div>
<a href="index.html">Home</a>
</div>
<main>
<div class="flex-container">
<div style="flex-basis: 25%">
</div>
<div>
<h1>Contact Methods:</h1>
<ul>
<li><a href="https://www.linkedin.com/in/arlene-andrews-a02a7a107/" target="_blank"
rel="noopener noreferrer">Through LinkedIn</a></li>
<li><a href="mailto:[email protected]" target="_top">Email</a></li>
<li><a href="https://dev.to/ArleneAndrews">Blog</a></li>
</ul>
</div>
</main>
</body>
</html>