-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
132 lines (114 loc) · 5.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
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
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Us</title>
<!--Bulma-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<!--Add styling in CSS-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar is-primary">
<div class="container">
<div class="navbar-brand ">
<h1 class="title main-t has-text-light has-text-weight-bold is-italic">Your Best Day Out</h1>
<!--navbar burger -->
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<div class="tabs is-right">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="our-team.html">Our Team</a></li>
<li class="is-active"><a>Contact</a></li>
</ul>
</div> <!--end of tab is-right-->
</div> <!--end of navbar-end-->
</div> <!--end of navbar-menu-->
</div> <!--end of container-->
</nav> <!--end of navbar-->
<!--contact form-->
<section class="section">
<div class="container has-text-centered">
<h2 class="title">We would love to hear from you!</h2>
<h2 class="subtitle">Provide your feedback below</h2>
<form>
<div class="field is-horizontal">
<div class="field-body">
<div class="field">
<p class="control has-icons-left">
<input class="input" type="text" placeholder="Name">
<span class="icon is-small is-left">
<i class="fas fa-user"></i>
</span>
</p>
</div>
<div class="field">
<p class="control has-icons-left has-icons-right">
<input class="input" type="email" placeholder="Email">
<span class="icon is-small is-left">
<i class="fas fa-envelope"></i>
</span>
</p>
</div>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<div class="field">
<div class="control">
<textarea class="textarea" placeholder="Message us"></textarea>
</div>
</div>
</div>
</div>
<div class="field is-horizontal">
<div class="field-body">
<div class="field">
<div class="control">
<button class="button is-primary">
Send message
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
Group Project01 for 2019/2020 NU Coding Bootcamp
</p>
</div>
<div class="content has-text-centered">
<p>
<a href="">
<i class="fab fa-facebook-square fa-2x"></i>
</a>
<a href="">
<i class="fab fa-twitter-square fa-2x"></i>
</a>
<a href="">
<i class="fab fa-instagram fa-2x"></i>
</a>
<a href="">
<i class="fab fa-snapchat fa-2x"></i>
</a>
</p>
<a href="https://bulma.io" >
<img src="https://bulma.io/images/made-with-bulma.png" alt="Made with Bulma" width="128" height="24">
</a>
</div> <!--end of credits-->
</footer>
</body>