-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactMe.html
84 lines (71 loc) · 3.75 KB
/
ContactMe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<!-- Bootsrap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- Google Fonts CDN -->
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&display=swap" rel="stylesheet">
<!-- Font Awesome CDN -->
<script src="https://kit.fontawesome.com/6acb0d9fa3.js" crossorigin="anonymous"></script>
<!-- Local Style Sheet -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: #303e39;">
<a class="navbar-brand" href="index.html">BotW</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html#content">My Photos <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="ContactMe.html">Contact Me</a>
</li>
</ul>
<span class="icons rounded">
<a href="https://www.linkedin.com/in/matt-baber-68b9711b3/"><i class="fab fa-linkedin px-2"
style="color: #0274B3; font-size: 3em;"></i></a>
<a href="https://www.instagram.com/psst.itsacoup/"><i class="fab fa-instagram-square px-2"
style="color: #CD255E; font-size: 3em;"></i></a>
<a href="https://github.com/Itsacoup"><i class="fab fa-git-alt px-2"
style="color: #F05133; font-size: 3em;"></i></a>
</span>
</div>
</nav>
<div class="container">
<section id="main">
<div class="row justify-content-center">
<div class="col-lg-6 mt-5 py-2 border border-dark rounded" style="background-color: #303e39;">
<img src="Assets/SunnyRamps.JPG" alt="" class="img-responsive" width="100%" height="auto">
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-6">
<form class="mt-5">
<div class="form-group">
<label for="exampleFormControlInput1">Name</label>
<input type="name" class="form-control" id="ContactMeInput1" placeholder="John Smith">
</div>
<div class="form-group">
<label for="exampleFormControlInput1">Email address</label>
<input type="email" class="form-control" id="ContactMeInput2" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Tell me what you think</label>
<textarea class="form-control" id="ContactMeInput3" rows="6"></textarea>
</div>
</form>
</div>
</div>
</section>
</div>
</body>
</html>