-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
50 lines (40 loc) · 2.04 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z490EPWZW9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Z490EPWZW9');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link src="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<title>About - Help Code It</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link href="./style.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
</head>
<body>
<!-- SECTION Navbar -->
<div id="nav-placeholder">
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
</div>
<!-- !SECTION End Nav -->
<!-- SECTION Main Content -->
<div class="container">
<h1 class="text-center display-1">About</h1>
<p class="lead">My name is <a href="https://michaelvarnell.com" target="_blank">Michael Varnell</a> , and I'm a front-end developer. I attended a bootcamp to update my skills, despite having a degree in Management Information Systems with a focus on Web Development. I've learned that tutorials and reference pages sometimes fall short. My goal for this site is to address the 'most frequently asked questions' about specific topics in a format that's easy to understand.</p>
<p class="lead">If you'd like to contribute, please visit our contribution page!</p>
</div>
<!-- !SECTION end Main Content -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>