-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
56 lines (56 loc) · 1.71 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Portfolio - Daniel Lewis</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Spectral+SC" rel="stylesheet">
</head>
<body>
<header>
<div id = "name">
<h1>Daniel Lewis</h1>
</div>
<div id="pagelinks">
<a href="./index.html">About</a>
<a href="./portfolio.html">Portfolio</a>
<a href="./contact.html">Contact</a>
</div>
</header>
<div class="container">
<section id ="portfolio">
<h2>Portfolio</h2>
<hr class="hrrule">
<div id = "portfoliotext">
Here are current and past projects:
<br>
<img src="http://lorempixel.com/200/200/" alt="project1" class="project">
<img src="http://lorempixel.com/200/200/" alt="project2" class="project">
<br>
<img src="http://lorempixel.com/200/200/" alt="project3" class="project">
<img src="http://lorempixel.com/200/200/" alt="project4" class="project">
</div>
</section>
<section id= "externallinks">
<h3>Connect with Me.</h3>
<hr class="hrrule">
<div id = "links">
<a href="https://github.com/zoosissoos">
<img src="assets/images/github.png" alt="github" style="width:48px;height:48px;border:0;">
</a>
<a href="https://www.linkedin.com/in/daniel-lewis-91635597/">
<img src="assets/images/linkedin.png" alt="linkedin" style="width:48px;height:48px;border:0;">
</a>
<a href="https://www.stackoverflow.com">
<img src="assets/images/stackoverflow.png" alt="stackoverflow" style="width:48px;height:48px;border:0;">
</a>
</div>
</section>
</div>
<footer>
<div id ="footertext">
Copyright 2017
</div>
</footer>
</body>
</html>