-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (62 loc) · 2.34 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
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A. Thompson Portfolio</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="navbar navbar-default">
<div class="container">
<a class="navbar-brand hidden-xs" href="https://atwrx.github.io">Andrew Thompson</a>
<!-- Nav Section -->
<div class="navbar-right">
<ul class="nav navbar-nav">
<li class="active">
<a href="index.html">About</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class=" col-xs-12 col-lg-8 jumbotron">
<h2>About me</h2>
<img id="my-pic" src="images/my-pic.jpg" alt="My Picture" align="left">
<p>Hello! My name is Andrew, and I'm in love with the internet. I have been learning Web Development and Programming for a little over a year now. </p>
<br>
<p>I've also spent time learning about Linux, and the open-source world. It's pretty amazing what you'll learn once you begin looking into the massive amount of open-source code avaliable online.</p>
</div>
<!-- Need to add <a>'s that connect to my profiles -->
<div class="col-xs-12 col-lg-3 col-lg-offset-1 jumbotron sidebar">
<h4>Connect with Me</h4>
<div class="links">
<a href="https://www.github.com/ATwrx">
<img class="small-pic" src="images/github.svg" alt="Link to GitHub">
</a>
<a href="https://www.linkedin.com/in/ayeteewebdesigns/">
<img class="small-pic" src="images/linkedin.svg" alt="Link to Linkedin Profile">
</a>
<a href="https://stackoverflow.com/users/7949377/andrew-thompson?tab=profile">
<img class="small-pic" src="images/stackoverflow.svg" alt="Link to StackOverflow">
</a>
</div>
</div>
</div>
</div>
<footer>
<p class="footer">© Copyright A. Thompson 2017</p>
</footer>
</body>
</html>