-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
49 lines (49 loc) · 2.14 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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML wireframe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/6.0.0/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Homemade+Apple&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Homemade+Apple|Nanum+Myeongjo&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" type="text/css" href="hamburger.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="index.js"></script>
</head>
<body>
<nav role="navigation">
<img class="logo" src="./resources/logo-simple.png" alt="logo"/>
<div class="nav-display">
<button class="nav-toggle" aria-label="menu">
<span class="nav-toggle-outter nav-display">
<span class="nav-toggle-inner nav-display">
</span>
</span>
</button>
<ul class="nav-content">
<li>Welcome!<hr></li>
<li><a href="#">Bio</a></li>
<li><a href="#">Portfolio 2</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<main>
<section class="contact-section">
<div class="column-1">
<h1>Get in Touch</h1>
<p>The best way to reach me is via email, [email protected]</p>
<p>You can also checkout my other profiles:</p>
<ul class="inline">
<li><a href=""><img class="icon" src="https://image.flaticon.com/icons/svg/179/179323.svg" alt="GitHub icon"></a></li>
<li><a href=""><img class="icon" src="https://image.flaticon.com/icons/svg/174/174857.svg" alt="LinkedIn icon"></a></li>
</ul>
</div>
<div class="column-2">
<img class="contact" src="https://images.pexels.com/photos/1239288/pexels-photo-1239288.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" alt="lydia smiling"></div>
</section>
</main>
<footer role="content-info">Footer</footer>
</body>
</html>