This repository has been archived by the owner on Oct 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
113 lines (109 loc) · 5.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Michael Bolens</title>
<link rel="stylesheet" type="text/css" href="assets/vendor/css/bootstrap-reboot.min.css" />
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<header>
<nav class="navbar sticky-top navbar-expand-lg navbar-light bg-dark">
<div class="container">
<a class="navbar-brand text-light" href="/index.html">Michael Bolens</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav">
<li class="">
<a class="active nav-item nav-link text-light" href="/index.html">About
<span class="sr-only">(current)</span>
</a>
</li>
<li class="">
<a class="nav-item nav-link text-light" href="/portfolio.html">Porfolio</a>
</li>
<li class="">
<a class="nav-item nav-link text-light" href="/contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main id="site-container" class="site-container">
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-6">
<section id="contact" class="block">
<div class="box">
<h2 class="block--title">Contact</h2>
<hr class="block--bar" />
<div class="block--content">
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Name</label>
<input type="name" class="form-control" id="nameInput" placeholder="John Smith">
</div>
<div class="form-group">
<label for="exampleFormControlInput1">Email</label>
<input type="email" class="form-control" id="emailInput" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Message</label>
<textarea class="form-control" id="messageInput" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</section>
</div>
<div class="col-sm-12 col-md-4">
<div class="box">
<section id="connect" class="block">
<h3 class="block--title">Connect with Me</h3>
<hr class="block--bar" />
<div class="block--content block-content__small">
<div class="">
<ul class="row connect--icons">
<li class="col col-sm-4">
<a target="_blank" href="https://github.com/bolensmichael">
<img src="./assets/images/if_github_square_black_107109.svg" alt="GitHub"/>
</a>
</li>
<li class="col col-sm-4">
<a target="_blank" href="https://www.linkedin.com/in/michaelbolens/">
<img src="./assets/images/if_linkedin_square_color_107091.svg" alt="LinkedIn" />
</a>
</li>
<li class="col col-sm-4">
<a target="_blank" href="https://stackoverflow.com/users/2482508/bolensmichael">
<img src="./assets/images/if_overflow_334695.svg" alt="Stack Overflow" />
</a>
</li>
</ul>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</main>
<footer class="footer bg-dark">
<div class="container">
<div class="row justify-content-center">
<span class="text-light">© 2017 Michael Bolens</span>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
</body>
</html>