-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (115 loc) · 5.02 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>Peter's Portfolio</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Lato:300,100,700' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<script src="js/jquery-2.1.3.min.js">
</script>
<script src="js/bootstrap.min.js">
</script>
</head><!-- My Logo and Featured Image Sourced From: https://pixabay.com/ -->
<body>
<div class="container">
<header>
<div class="row">
<div class="col-md-6"><img alt="My Logo" class="img-responsive title-logo" src="img/profile-image.png" class="title-logo"></div>
<div class="col-md-6 text-right text-uppercase">
<h1 class="header-title">Peter Simpson</h1>
<p class="header-subtitle">Full-Stack Developer</p>
</div>
</div>
</header>
<div class="row">
<div class="col-md-12">
<hr class="line">
<img alt="Featured Image" class="img-responsive featured" src="img/featured.png"></div>
</div>
<section>
<h2 class="section-heading">Featured Work</h2>
<div class="row text-center">
<div class="col-md-4">
<article>
<a href="https://github.com/petergns/fresh_tomatoes">
<img alt="Movie Trailer Image" class="img-responsive project" id="1" src="img/freshtomatoes.png"
</a>
<h3 class="text-uppercase project-title">Movie Trailer</h3>
<p class="text-thin"><a href="https://github.com/petergns/fresh_tomatoes" target="_blank">github.com/petergns/fresh_tomatoes</a></p>
</article>
</div>
<div class="col-md-4">
<article>
<a href="https://github.com/petergns/linux_server_catalog">
<img alt="Linux Server Image" class="img-responsive project" id="2" src="img/linux-server.PNG">
</a>
<h3 class="text-uppercase project-title">Linux Server Project</h3>
<p class="text-thin"><a href="https://github.com/petergns/linux_server_catalog" target="_blank">github.com/petergns/linux_server_catalog</a></p>
</article>
</div>
<div class="col-md-4">
<article>
<a href="https://github.com/petergns/logs-analysis">
<img alt="Logs Analysis Image" class="img-responsive project" id="3" src="img/codeownquiz.PNG">
</a>
<h3 class="text-uppercase project-title">Logs Analysis</h3>
<p class="text-thin"><a href="https://github.com/petergns/logs-analysis" target="_blank">petergns/logs-analysis</a></p>
</article>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<article>
<a href="https://github.com/petergns/makeawebpage">
<img alt="Make A Web Page Image" class="img-responsive project" id="4" src="img/makewebpage.PNG">
</a>
<h3 class="text-uppercase project-title">Make a Web Page</h3>
<p class="text-thin"><a href="https://github.com/petergns/makeawebpage" target="_blank">github.com/petergns/makeawebpage</a></p>
</article>
</div>
<div class="col-md-4">
<article>
<a href="https://github.com/petergns/createawebpage">
<img alt="Create a Web Page Image" class="img-responsive project" id="5" src="img/createawebpage.PNG">
</a>
<h3 class="text-uppercase project-title">Create a Web Page</h3>
<p class="text-thin"><a href="https://github.com/petergns/createawebpage" target="_blank">github.com/petergns/createawebpage</a></p>
</article>
</div>
<div class="col-md-4">
<article>
<a href="https://github.com/petergns/buildaportfolio">
<img alt="Build a Portfolio Image" class="img-responsive project" id="6" src="img/build-portfolio.PNG">
</a>
<h3 class="text-uppercase project-title">Build a Portfolio</h3>
<p class="text-thin"><a href="https://github.com/petergns/buildaportfolio" target="_blank">github.com/petergns/buildaportfolio</a></p>
</article>
</div>
<div class="col-md-4">
<article>
<a href="https://graemesimpsonimages.com/">
<img alt="Graeme Simpson Images Homepage Image" class="img-responsive project" id="7" src="img/gsi-website-img.png">
</a>
<h3 class="text-uppercase project-title">Graeme Simpson Images</h3>
<p class="text-thin"><a href="https://graemesimpsonimages.com/" target="_blank">https://graemesimpsonimages.com/</a></p>
</article>
</div>
<div class="col-md-4">
<article>
<a href="https://starexplorerbooks.com/">
<img alt="Star Explorer Books Homepage Image" class="img-responsive project" id="7" src="img/star-explorer-books.png">
</a>
<h3 class="text-uppercase project-title">Star Explorer Books</h3>
<p class="text-thin"><a href="https://starexplorerbooks.com/" target="_blank">https://starexplorerbooks.com/</a></p>
</article>
</div>
</div>
</section>
</div>
</body>
</html>