-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
102 lines (101 loc) · 4.85 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!--CONTACT PAGE-->
<!DOCTYPE html>
<html lang="en">
<head>
<title> Gizelle's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<link href="css/style.css" type="text/css" rel="stylesheet" integrity="sha384-qzYMgY8vDhOuMvTyeRkuHCWHDAsZYS8MpwZxlc2heYsyImNtqebhYJprY3vCHPFc"/>
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<!--HAMBURGER MENU AND NAVBAR-->
<div class="nav">
<label for="toggle">☰</label>
<input type="checkbox" id="toggle"/>
<nav class="menu">
<a href="index.html">HOME</a>
<a href="blogposts.html">BLOG</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html" class="active">CONTACT</a>
</nav>
</div>
<!--HEADER-->
<header class="container" id="header-image">
<h1>Contact</h1>
</header>
<!--MAIN-->
<main class="contact-container">
<!--CONTACT FORM-->
<div class="form">
<div class="textbox">
<h4>Contact Form</h4>
<form action="#" name="contact_form" netlify>
<label id="first_name">First Name</label>
<input name="first_name" type="text" required placeholder="First name"/>
<br>
<label id="last_name">Last Name</label>
<input name="last_name" type="text" required placeholder="Last name"/>
<br>
<label id="email">Email</label>
<input name="email" type="email" required placeholder="[email protected]"/>
<br>
<label id="message">Message</label><br>
<textarea name="message" required placeholder="Enter your message here ..." cols="40" rows="20" ></textarea>
<div class="center">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
<!--SIDEBAR-->
<div class="sidebar">
<div class="textbox">
<h4>Details</h4>
<p>Gizelle v.Z.</p>
<p>Brisbane, Australia</p>
<p><a href="mailto:[email protected]" target="_blank">Contact by Email</a></p>
<a href="https://www.linkedin.com/in/gizellevz" target="_blank"><img src="images/libug.png" class="socialbugs" alt="Linkedin"></a>
<a href="https://github.com/Ellezique" target="_blank"><img src="images/github-mark.jpg" class="socialbugs" id="githubblack" alt="GitHub"></a>
</div>
</div>
</main>
<!--FOOTER-->
<footer id="footer">
<!--Footer left section-->
<div class ="footer-left">
<div class="footer-links">
<a href="index.html">Home</a>
<br>
<a href="blogposts.html">Blog</a>
<br>
<a href="portfolio.html">Portfolio</a>
<br>
<a href="contact.html" class="active">Contact</a>
</div>
<div class="social-media">
<a href="https://www.linkedin.com/in/gizellevz" target="_blank"><img src="images/libug.png" class="socialbugs" alt="LinkedIn"></a>
<a href="https://github.com/Ellezique" target="_blank"><img src="images/gitbug.png" class="socialbugs" alt="GitHub"></a>
</div>
</div>
<!--Footer middle section-->
<div class="footer-center">
<div class="footerportrait">
<a href="portfolio.html"><img src="images/portrait653.jpg" id="footerportrait" alt="Watercolor Portrait"></a>
</div>
<p>© 2021 Gizelle v.Z. All Rights Reserved</p>
</div>
<!--Footer right section-->
<div class="footer-right">
<div class="contact-details">
<p>Brisbane</p>
<p>Australia</p>
<p><a href="mailto:[email protected]" target="_blank">Contact by Email</a></p>
<p><a href="credits.html" target="_blank">Photo Credits</a></p>
</div>
</div>
</footer>
</body>
</html>