-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 3.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About Me</title>
<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">
<link rel="stylesheet" type="text/css" href="assets/CSS/style.css">
</head>
<!--This is where all the web content lives-->
<body>
<div class="container">
<div class="row header">
<!--this is a column that is the full width of the screen-->
<div class="col-lg-6 col-md-6 col-sm-12 name">
<h1>Courtney Tucker</h1>
</div>
<!--This is the header navigation-->
<div class="col-lg-6 col-md-6 col-sm-12 header-nav">
<nav class="nav">
<a class="nav-link" href="index.html">About Me</a> |
<a class="nav-link" href="portfolio.html">Portfolio</a> |
<a class="nav-link" href="https://www.linkedin.com/in/courtt3d/">LinkedIn</a> |
<a class="nav-link" href="contact.html">Contact</a> |
<a class="nav-link" href="resume.html">Resume</a>
</nav>
</div>
</div>
<!--This is the main content area-->
<div class="row title">
<div class="col-lg-12 col-md-12 col-sm-12 about">
<h2>About Me</h2>
</div>
</div>
<div class="row main">
<div class="col-lg-12 col-md-12 col-sm-12 description">
<div class="row description">
<div class="col-lg-4 col-md-6 col-sm-12">
<img src="assets/images/profile-pic.jpg" class="img-fluid profile" alt="Courtney Tucker">
</div>
<div class="col-lg-8 col-md-6 col-sm-12 description-text">
<p>Hey! Nice to meet you. My name is Courtney Tucker. I am a total tech geek. I love
everything tech, especially computers.</p>
<p>I have years of self-taught HTML and CSS under my belt. I have also worked
extensively with the Magento e-commerce platform. This site contains some of my
favorite projects. Take a look around!</p>
<p>I also enjoy other technical pursuits such as video editing which I have been doing
for the last 5 years.</p>
<p>Check out my <a href='https://www.linkedin.com/in/courtt3d/'>LinkedIn Profile</a> and my github repos.</p>
</div>
</div>
</div>
</div>
<div class="row footer">
<div class="col-lg-12 col-md-12 col-sm-12">
<p>Copyright 2019</p>
</div>
</div>
</div>
</body>
</html>