-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
78 lines (67 loc) · 2.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact | Karl Alberto's Portfolio</title>
<link rel="icon" type="image/png" href="assets/karlFavicon.png" />
<!-- Using sha256, sha384 and sha512 SRI -->
<link href="./contact-style.css" rel="stylesheet" integrity="sha256-9GiXxqJ4RG8uKtnw0hqi5SUQAdvd/pMJVRa/8j+BG48= sha384-9W+PGTixkeSzzL69uDGkEvbgo6QmBBcwFOK/bIGzIGulPSSsiG+KO8drD08xUU/c sha512-TfLyjhmQrqUr4b1W/bHbHgH/RE4wI72L0oxhFN1GcbP/6WFRSIa1LqRY639cjRjdX5TiieZEOlWKLc+fADn0ZQ==" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Play&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<img id="header-logo" type="image/png" src="assets/karlLogo.png" alt="Origami logo" height="50px" />
<h1>Contact</h1>
<nav id="main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="blog.html">Blog</a></li>
<li>Contact</li>
</ul>
</nav>
</header>
<section id="intro">
<h2>Connect with me via my social links in the footer, or get in touch via the form!</h2>
</section>
<!-- Non-functioning form, currently for example only -->
<section id="contact">
<div>
<form id="form">
<div>
<label for="name">Name</label>
<input type="text" id="name" name="name" />
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email" />
</div>
<div>
<label for="message">Message</label>
<textarea id="message" name="message" rows="10">Leave me a message...
</textarea>
</div>
<div>
<input type="submit" value="Send" />
</div>
</form>
</div>
</section>
<footer>
<nav id="socials">
<ul>
<li><a href="https://www.linkedin.com/in/karl-francis-alberto" target="_blank">LinkedIn</a></li>
<li><a href="https://twitter.com/Kei_Eff" target="_blank">Twitter</a></li>
<li><a href="https://stackoverflow.com/users/15528466/kei" target="_blank">Stackoverflow</a></li>
<li><a href="https://github.com/Kei-Eff" target="_blank">Github</a></li>
</ul>
</nav>
<div>
<span>Design by Karl Alberto | Copyright © 2021 | <a href="sitemap.xml">Sitemap</a></span>
</div>
</footer>
</body>
</html>