-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
128 lines (112 loc) · 5.08 KB
/
contact.html
File metadata and controls
128 lines (112 loc) · 5.08 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>PartyPlanner</title>
<!-- fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,700,500' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:400,500,700">
<!-- jquery -->
<script src="js/jquery-2.1.4.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/styles-merged.css">
<script src="js/bootstrap.min.js"></script>
<!-- Style CSS -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar probootstrap-megamenu navbar-default probootstrap-navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html" title="PartyPlanner">PartyPlanner</a>
</div>
<div id="navbar-collapse" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#features">Features</a></li>
<li><a href="index.html#howitworks">How It Works</a></li>
<li><a href="team.html">Our Team</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li class="probootstra-cta-button"><a href="#" class="btn" data-toggle="modal" data-target="#loginModal">Log in</a></li>
<li class="probootstra-cta-button last"><a href="#" class="btn btn-ghost" data-toggle="modal" data-target="#signupModal">Sign up</a></li>
</ul>
</div>
</div>
</nav>
<!-- .nav -->
<!-- .header-->
<section class="probootstrap-hero probootstrap-xs-hero probootstrap-hero-colored">
<div class="container">
<div class="row">
<div class="col-md-8 text-left probootstrap-hero-text">
<h1>Contact Us</h1>
</div>
</div>
</div>
</section>
<section class="probootstrap-section gray-bg">
<div class="container contents">
<div class="row">
<div>
<h2>Drop us a line</h2>
<form action="#" method="post" class="probootstrap-form">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" class="form-control" id="name" name="name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" class="form-control" id="subject" name="subject">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea cols="30" rows="10" class="form-control" id="message" name="message"></textarea>
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary btn-lg" id="submit" name="submit" value="Submit Form">
</div>
</form>
</div>
<div>
<h2>Get in touch</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Iusto provident qui tempore natus quos quibusdam soluta at.</p>
<h4>USA</h4>
<ul class="probootstrap-contact-info">
<li><i class="icon-pin"></i> <span>198 West 21th Street, Suite 1111 New York NY 10016</span></li>
<li><i class="icon-email"></i><span>info@domain.com</span></li>
<li><i class="icon-phone"></i><span>+123 456 7890</span></li>
</ul>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="copyright-section">
<div class="container">
<div class="col-md-12">
<div class="copytext text-center">© All rights reserved | PartyPlanner</a></div>
</div>
</div>
<!-- .container -->
</div>
<!-- .copyright-section -->
</footer>
<!-- .footer -->
</body>
</html>