-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
107 lines (60 loc) · 1.88 KB
/
Copy pathportfolio.html
File metadata and controls
107 lines (60 loc) · 1.88 KB
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
<!DOCTYPE html>
<html>
<head>
<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">Siddhant Sehgal</a>
<nav>
<h4><a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a></h4>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>Portfolio</h1>
<div class="work">
<img class="auth-image" src="assets/images/Hangman-6.png" width="200" alt="hangman">
<h3>Hangman</h3>
</div>
<div class="work">
<img class="auth-image" src="assets/images/iPhone.png" width="200" alt="rpggame">
<h3>RPG Game</h3>
</div>
<div class="work">
<img class="auth-image" src="assets/images/bud.jpg" width="200" alt="triviagame">
<h3>Trivia Game</h3>
</div>
<div class="work">
<img class="auth-image" src="assets/images/soccer.jpg" width="200" alt="rockpaperscissors">
<h3>Rock Paper Scissors</h3>
</div>
<div class="work">
<img class="auth-image" src="assets/images/jetairways.jpg" width="200" alt="rutgersinfowidget">
<h3>Rutgers Info Widget</h3>
</div>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with me</h2>
<img class="social" src="assets/images/github.png" alt="github"
width="64" />
<img class="social" src="assets/images/linkedin.png" alt="linkedin"
width="64">
<img class="social" src="assets/images/stackoverflow.png" alt="stack overflow" width="64">
</div>
</section>
</div>
<footer>
<div class="container">
© Copyright 2016 Siddhant Sehgal
</div>
</footer>
</body>
</html>