-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
31 lines (31 loc) · 1.31 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
<html>
<head>
<meta charset="utf-8"/>
<title>Shravan - Contact</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700|Roboto" rel="stylesheet"/>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header class="hamburger-link"><a href="#" data-click-text="Open menu">
<div class="burger-icon"></div></a></header>
<nav class="fixed-nav">
<a href="index.html">Home</a>
<a href="about.html">PlastikoPatch</a>
<a href="how.html">How It's Made</a>
<a href="contact.html">Contact</a>
</nav>
<section id="hero"><img src="img/logo.jpg" class="logo"/>
<h1>Get in touch</h1>
<p>We're always open to new ideas<br>If you have any suggestions or recommendations, hit us up!<br></p>
</section>
<section id="contact">
<input type="text" placeholder="Name" required="required"/>
<input type="email" placeholder="Email" required="required"/>
<textarea placeholder="Message (optional)"></textarea>
<button type="submit"> <span>Send it in!</span></button>
</section>
<footer>© 2021 Bin2Blvd, Inc.<br>Made with ♥ for PlutoHacks.</footer>
<script src="jquery-3.1.0.min.js"></script>
<script src="script.js"></script>
</body>
</html>