generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
105 lines (102 loc) · 5.22 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
<!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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<title>Foraging Cardiff | Guided Forging Walks in the Heart of Cardiff</title>
</head>
<body>
<!------------------------------------------Navbar-->
<!---Navbar structure taken from bootsrap documentation URL:https://getbootstrap.com/docs/4.2/components/navbar/-->
<header>
<nav class="navbar navbar-light navbar-expand-sm">
<a class="navbar-brand mr-auto" href="home.html">
<img src="../milestone-project-1/assets/images/logo.jpg" width="100" height="100" alt="Logo">
</a>
<ul class="navbar-nav col-auto navbar-font">
<li class="nav-item">
<a class="nav-link" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<!--------------------------------------Header-->
<section>
<div class="jumbotron jumbotron-fluid jumbotron-header">
<div class="container">
<h1 class="display-4 jumbotron-text">Contact</h1>
</div>
</div>
</section>
<!--------------------------------------Forms-->
<!--Form structure taken from bootsrap documentation URL;https://getbootstrap.com/docs/4.2/components/forms/-->
<section>
<div class="container container-fluid">
<div class="row no-gutters-form no-gutters justify-content-around">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-5 col-xl-5 form-background">
<form class="form-style mx-auto">
<legend>Want to keep updated with our latest news?</legend>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" aria-describedby="nameHelp" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" aria-describedby="emailHelp" placeholder="Enter your email address" required>
<small id="emailHelp" class="form-text text-muted">We'll never share your details with anyone else.</small>
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="consent">
<label class="form-check-label" for="consent">I want to recieve the latest news and offers</label>
</div>
<button type="submit" class="btn btn-outline-success">Submit</button>
</form>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-5 col-xl-5 form-background">
<form class="form-style mx-auto">
<legend>Want to become a guide?</legend>
<div class="form-group">
<label for="name-guide">Name</label>
<input type="text" class="form-control" id="name-guide" aria-describedby="nameHelp" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="email-guide">Email address</label>
<input type="email" class="form-control" id="email-guide" aria-describedby="emailHelp" placeholder="Enter your email address" required>
<small id="emailHelp-guide" class="form-text text-muted">We'll never share your details with anyone else.</small>
</div>
<label for="experience">What experience do you have? (maximum 50 words)</label>
<textarea id="experience" name="experience" rows="3" cols="40" placeholder="Tell us a little bit about your experience..." maxlength="300" required></textarea>
<button type="submit" class="btn btn-outline-success">Submit</button>
</form>
</div>
</div>
</div>
</section>
<!--------------------------------------Footer-->
<footer id="footer-contact">
<div class="container container-fluid">
<div class="row no-gutters">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 footer-text">
Foraging Cardiff <i>guided foraging walks in the heart of Cardiff</i>
</div>
<ul class="list-inline col-xl-6 col-lg-6 col-md-6 col-sm-12 socials">
<span>Follow us:</span>
<li class="list-inline-item"><a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li class="list-inline-item"><a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>