generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsubmitted.html
74 lines (68 loc) · 2.84 KB
/
submitted.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Submitted! | Emperors Shogun</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
</head>
<body>
<!-- Begin Header section -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-main">
<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"><img src="assets/images/index/homelogo.png" alt="Home logo" /> </a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-main">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a class="active" href="contactus.html">Contact us</a></li>
</ul>
</div>
</div>
</nav>
<!-- End header section -->
<!-- Begin text section -->
<div id="submitted">
<div class="landing-text">
<h1>Thank you for getting in touch!</h1>
<h2 style="color: #E45845;"></h2>
<h2><b>We will respond to you as soon as possible. Go back to </b><a id="submitted-link" href="index.html" style="color:#E45845">HOME</a></h2>
</div>
</div>
<!-- End text section -->
<!-- Begin footer section -->
<footer class="container-fluid text-center">
<div class="row">
<div class="col-sm-4">
<h3>Contact Us</h3>
<br />
<h4>Email us at [email protected] or use the button below</h4>
<br />
<a href="contactus.html" class="btn btn-info" role="button">Contact us page</a>
</div>
<div class="col-sm-4">
<h3>Connect</h3>
<a href="https://www.facebook.com/" target="_blank" title="Facebook" class="fa fa-facebook"> </a>
<a href="https://www.twitter.com/" target="_blank" title="Twitter" class="fa fa-twitter"></a>
<a href="https://www.gmail.com/" target="_blank" title="Gmail" class="fa fa-google"></a>
<a href="https://www.youtube.com/" target="_blank" title="Youtube" class="fa fa-youtube"></a>
</div>
<div class="col-sm-4">
<img src="assets/images/index/samtrans.png" class="icon" />
</div>
</div>
</footer>
<!-- End footer section -->
</body>
</html>