This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
74 lines (65 loc) · 2.54 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Brittany Greaner
</a>
<nav>
<a href="index.html">About
</a>
<a href="portfolio.html">Portfolio
</a>
<a href="contact.html">Contact
</a>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-container">
<h1>Portfolio</h1>
<div class="work">
<img src="assets/images/hangman.jpg" alt="hangman" class="auth-image"/>
<h3>Hangman</h3>
</div>
<div class="work">
<img src="assets/images/RPGGame.jpg" alt="RPG Game" class="auth-image"/>
<h3>RPG Game</h3>
</div>
<div class="work">
<img src="assets/images/triviaGame.jpg" alt="Trivia Game" class="auth-image"/>
<h3>Trivia Game</h3>
</div>
<div class="work">
<img src="assets/images/rutgersInfoWidget.jpg" alt="Rutgers Info Widget" class="auth-image"/>
<h3>Rutgers Info Widget</h3>
</div>
<div class="work">
<img src="assets/images/rockPaperScissors.jpg" alt="Rock Paper Scissors" class="auth-image"/>
<h3>Rock Paper Scissors</h3>
</div>
</section>
<section class="sidebar">
<div id="conncect">
<h2>Connect with Me</h2>
<img src="assets/images/github.png" alt="github logo" class="social">
<img src="assets/images/linkedin.png" alt="linkedin logo" class="social">
<img src="assets/images/stackoverflow.png" alt="stackoverflow" class="social">
</div>
</section>
</div>
<footer>
<div class="container">
© Copyright 2018 Brittany Greaner
</div>
</footer>
</body>
</html>