-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
86 lines (83 loc) · 3.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>LineUp Q1 Project</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link rel="stylesheet" href="styles.css"/>
</head>
<body background="http://www.florestaua.com/wp-content/uploads/2015/09/Microphone-Old.jpg">
<header>
<nav class="black">
<div class="nav-wrapper">
<a href="#" class="center"></a>
<a id="nav-mobile" class="center hide-on-med-and-down">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<header>
<main>
<h1 href="#" class="center grey-text text-lighten-4">Contact Us</h1>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6 grey-text text-lighten-4">
<input placeholder="First Name" id="first_name" type="text" class="validate">
<label for="first_name"></label>
</div>
<div class="input-field col s6 grey-text text-lighten-4">
<input placeholder="Last Name" id="last_name" type="text" class="validate">
<label for="last_name"></label>
</div>
</div>
<div class="row">
<div class="input-field col s12 grey-text text-lighten-4">
<input placeholder="Email" id="email" type="email" class="validate">
<label for="email"></label>
</div>
</div>
</form>
<div>
<button class="btn waves-effect waves-light" type="submit" name="action">Submit
<i class="material-icons center"></i>
</button>
</div>
<!-- <div class="alert">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×<p>Success! Thanks for getting in touch.</p></span>
</div> -->
</div>
</main>
<footer class="page-footer black">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">LineUp</h5>
<p class="grey-text text-lighten-4">Find local artists, venues, and tickets wherever you are with a single click.</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Links</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="index.html">Home</a></li>
<li><a class="grey-text text-lighten-3" href="about.html">About</a></li>
<li><a class="grey-text text-lighten-3" href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<a href="https://www.linkedin.com/in/stephanie-baron/">© 2017 Stephanie Baron<a>
<a class="grey-text text-lighten-4 right" href="#!">More Links</a>
</div>
</div>
</footer>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="script.js"></script>
</div>
</body>
</html>