-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
33 lines (31 loc) · 1.39 KB
/
contact.html
File metadata and controls
33 lines (31 loc) · 1.39 KB
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
<!DOCTYPE html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<script type="text/javascript" src="script.js"></script>
<link type="text/css" rel="stylesheet" href="stylesheet.css" />
<title>Contact Cindy Liu</title>
</head>
<body>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h1 class="contact-title">It was nice to meet you!</h1>
<h3>Let's keep in touch</h3>
</div>
<section class="body">
<form method="post" action="index.php">
<label>Name*</label>
<input name="name">
<label>Email*</label>
<input name="email" type="email">
<label>Subject*</label>
<input name="subject">
<label>Message*</label>
<textarea name="message"></textarea>
<input id="submit" name="submimt" type="submit" value="Submit">
</form>
</section>
</body>
</html>