-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
149 lines (147 loc) · 6.31 KB
/
Copy pathcontact.html
File metadata and controls
149 lines (147 loc) · 6.31 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!-- HTML5 - Contact for Responsive Portfolio -->
<!DOCTYPE html>
<!-- Defining language English United States -->
<html lang="en-us">
<!-- Head with title, favicon image, and the linked Bootstrap CSS file -->
<head>
<!-- Required responsive meta tags to ensure things scale correctly across devices -->
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<meta name="description" content="Jon Phoenix. Full-stack web developer portfolio"/>
<meta name="author" content="Jon Phoenix®"/>
<!-- Linking CSS Reset -->
<link rel="stylesheet" href="css/reset.css"/>
<!-- Adding a favicon to webpage title -->
<link rel="icon" type="image/png" href="img/j-fav-icon.png">
<!-- Using a descriptive webpage title -->
<title>Jon Phoenix® Portfolio</title>
<!-- Linking Bootstrap CSS -->
<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"
/>
<!-- Linking Google fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Roboto:wght@300;400;600&display=swap"
rel="stylesheet" type="text/css"
/>
<!-- Linking Additional CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<!-- Adding inline css style background color -->
<body>
<!-- Div "content" for Sticky footer -->
<div class="content">
<!-- Div "content-inside" for Sticky footer -->
<div class="content-inside">
<!-- Building a NavBar, fixing it to the top, keeping navbar-brand to the left and inline css -->
<nav class="navbar fixed-top navbar-expand-md navbar-dark">
<!-- Adding style to navbar-brand-->
<a class="navbar-brand" href="index.html">Jon Phoenix<sup><span class="note">®</span></sup></a>
<!-- Adding the navbar toggler for smaller viewports -->
<button
class="navbar-toggler" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Placing nav-links and aligning them to the right -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<!-- Adding nav-link "About" -->
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<!-- Adding nav-link "Projects" -->
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<!-- Adding nav-link "Contact" and make it active -->
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Main section in "container" with additional css style -->
<div class="container">
<!-- Adding a 12-column row for first sub-section-->
<div class="row">
<div class="col-lg-12">
<!-- Wrapping the article in a card -->
<article class="card">
<!-- Adding a h3 heading with css color style -->
<h3>Contact Me</h3>
<!-- Adding a Bootstrap contact form using .form-control class -->
<form class="form-style">
<div class="form-group">
<label for="formGroupExampleInput">Name</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="John Smith">
</div>
<div class="form-group">
<label for="formGroupExampleInput2">Email</label>
<input type="email" class="form-control" id="formGroupExampleInput2" placeholder="name@example.com">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="6"></textarea>
</div>
<!-- Adding a submit button ready to be made functional -->
<button type="submit" class="btn btn-dark">Send</button>
</form>
</article>
</div>
</div>
<br/>
<!-- Adding a 12-column row for second sub-section-->
<div class="row">
<div class="col-lg-12">
<!-- Wrapping the content in a card -->
<div class="card social-bar">
<div class="card-body">
<div class="text-center">
<a href="https://github.com/JonPhoenix" target="_blank">
<img src="img/icon-github.jpg" alt="My Github">
</a>
<a href="https://www.linkedin.com/in/jonphoenix/" target="_blank">
<img src="img/icon-linkedin.jpg" alt="My LinkedIn">
</a>
<a href="https://www.jonphoenix.com/" target="_blank">
<img src="img/icon-squarespace.jpg" alt="My Website">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<br/>
<p class= "note">
Full-stack web developer & designer
</p>
</div>
</div>
<!-- Adding a Sticky footer with css style -->
<footer class="footer">
<h6>© Jon Phoenix 2020</h6>
</footer>
<!-- Required scripts for Bootstrap components to work -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous">
</script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous">
</script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous">
</script>
</body>
</html>