-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactindex.html
116 lines (90 loc) · 3.4 KB
/
contactindex.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Semester Project</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="style.css"/>
<script src="https://kit.fontawesome.com/0000000000.js" crossorigin="anonymous"></script>
<title>Muse Creative</title>
</head>
<!-- Helena Beamish contact Page Semester Project -->
<body>
<header>
<nav class="navbar navbar-expand-sm navbar-expand-md fixed-top">
<div class="container">
<a class="navbar-brand d-none s-sm-inline-block" href="#"></a>
<div class="navbar-nav">
<div class="ml-4"><a class="navspace"><a href="homeindex.html">Home</a> </div>
<div class="ml-4"><a class="navspace"><a href="aboutindex.html">About</a> </div>
<div class="ml-4"><a class="navspace"><a href="contactindex.html">Contact</a> </div>
</div>
<span class="navbar-text d-none d-xl-inline-block"><a href="homeindex.html" class="active">Muse Creative</a></span>
</div>
</nav>
</header>
<!-- Jumbotron start-->
<div class="jumbotron jumbotron-fluid p-5 text-white">
<title>Reach Out!</title>
<h1 class="p-4">Reach out!</h1>
<div class="p-5">
<h2 class="text-center">Contact me and find out what I can do for you </h2>
<div>
<form>
<div class="form-group">
<label for="exampleInputEmail1">First & Last Name</label>
<div class="row">
<div class="col">
<input type="text" class="form-control" placeholder="First name">
</div>
<div class="col">
<input type="text" class="form-control" placeholder="Last name">
</div>
</div>
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputmessage1">Message</label>
<input type="message" class="form-control" id="exampleInputmessage1" placeholder="Type Message...">
</div>
<button type="submit" class="btn btn-primary btn-dark jumbobtn border-0 btn-lg">Submit</button>
</form>
</div>
</div>
</div>
</body>
<footer>
<div class="col-md-4 footer-column">
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="contactindex.html">Contact us</a>
</li>
</ul>
</div>
</div>
<div class="row text-center">
<div class="col-md-4 box">
<span class="copyright quick-links">Copyright © Muse Creative <script>document.write(new Date().getFullYear())</script>
</span>
</div>
<div class="col-md-4 box">
<ul class="list-inline quick-links">
<li class="list-inline-item">
<a href="https://www.instagram.com/lenabmusse/"> <strong>Check us out on Instagram!</strong> </a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>