-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
92 lines (76 loc) · 3.78 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
<!DOCTYPE html>
<Html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-width, initial-scale=1">
<!-- Bootstrap 4.3.1 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Fonts -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- my css -->
<link rel="stylesheet" href="../Bootstrap-Portfolio/assets/css/style.css">
<!-- my sass -->
<link rel="stylesheet" href="../Bootstrap-Portfolio/assets/css/sass.css">
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<!-- My JS -->
<script src="../Bootstrap-Portfolio/assets/JavaScript/app.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<h1 class="col-md-12 col-lg-6 nameHead">Devin Stewart</h1>
<h1 class="col-md-12 col-lg-6 displayNone socialMedia"><a href="https://www.linkedin.com/in/devin-stewart-7697bb9b/"
class="fa fa-linkedin"></a><a href="https://www.github.com/bigshmow" class="fa fa-github"></a></h1>
</div>
<div class="row">
<h5 class="col-4 text-left seekingPos hideMe"><a
href="https://www.linkedin.com/in/devin-stewart-7697bb9b/" class="fa fa-linkedin"></a><a
href="https://www.github.com/bigshmow" class="fa fa-github"></a> Full Stack Web Developer
</h5>
</div>
</div>
<div class="container">
<div class="row m-scene">
<div class="col-md-12 col-lg-3 card shadow infoBox scene_element scene_element--fadeinbottom"
id="contactBox2">
<a href="../Bootstrap-Portfolio/index.html" class="stretched-link"></a>
<p>Contact</p>
<hr>
<p class="hideMe">Leave a Message</p>
</div>
<div class="col-md-12 col-lg-9">
<div class="jumbotron dialogueBox contact scene_element scene_element--fadeinleft">
<br>
<div class="input-group mb-3">
<div class="input-group-prepend"><span class="input-group-text"><i
class="fa fa-user"></i></span></div>
<input type="text" class="form-control" placeholder="First and Last Name">
</div>
<br>
<div class="input-group mb-3">
<div class="input-group-prepend"><span class="input-group-text"><i
class="fa fa-envelope"></i></span></div>
<input type="text" class="form-control" placeholder="[email protected]">
</div>
<p>Leave a message below:</p>
<textarea class="form-control" id="bigText" rows="5"></textarea>
<br>
<button type="submit" class="btn submit">Submit</button>
<br><br>
<p>Feel free to reach out via email directly: [email protected]</p>
<p>Or give me a call: 7607160327</p>
</div>
</div>
<div class="col-md-12 col-lg-3 card shadow infoBox hideMe" id="contactBox">
<a href="../Bootstrap-Portfolio/index.html" class="stretched-link"></a>
<p>Contact</p>
<hr>
<p class="hideMe">Leave a Message</p>
</div>
</div>
</div>
</body>
</Html>