-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
89 lines (77 loc) · 2.44 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>My First Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<h1> Sergey </h1>
<a href="contact.html" class="hidden-desktop">
<div id="contact">
<h4> Contact </h4>
</div>
</a>
<a href="portfolio.html" class="hidden-desktop">
<div id="portfolio">
<h4> Portfolio </h4>
</div>
</a>
<a href="main_index.html" class="hidden-desktop">
<div id="about">
<h4> About </h4>
</div>
</a>
<a href="contact.html" class="hidden-mobile">
<div id="contact">
<h4> Contact </h4>
</div>
</a>
<a href="portfolio.html" class="hidden-mobile">
<div id="portfolio">
<h4> Portfolio </h4>
</div>
</a>
<a href="main_index.html" class="hidden-mobile">
<div id="about">
<h4> About </h4>
</div>
</a>
<div id="boxportfolio">
<div id="mainframe">
<div id="portfolio_name">
<h2> Portfolio </h2>
</div>
<div id="frame1">
<img id="frame1pic" src="./assets/images/photo1.png" alt = "Photo 1" width="200" height ="150">
<h3>Hangman Game</h3>
</div>
<div id="frame2">
<img id="frame2pic" src="./assets/images/photo2.png" alt = "Photo 2" width="200" height ="150">
<h3>RPG Game</h3>
</div>
<div id="frame3">
<img id="frame3pic" src="./assets/images/photo3.png" alt = "Photo 3" width="200" height ="150">
<h3>Trivia Game</h3>
</div>
<div id="frame4">
<img id="frame4pic" src="./assets/images/photo4.png" alt = "Photo 4" width="200" height ="150">
<h3>Rutgers Info Widget</h3>
</div>
<div id="frame5">
<img id="frame5pic" src="./assets/images/photo5.png" alt = "Photo 5" width="200" height ="150">
<h3>Rock Paper Scissors</h3>
</div>
</div>
<div id="connectwithme_portfolio" >
<h3> Connect with me </h3>
<a href="https://github.com" target="_blank"><img src="assets/images/Github.png" alt="Github" class="socialMedia"></a>
<a href="https://www.linkedin.com/in/sergey-shcherbakov-34743460" target="_blank"><img src="assets/images/linkedin.png" alt="LinkedIn" class="socialMedia"></a>
<a href="https://stackoverflow.com/users/story/7303797" target="_blank"><img src="assets/images/Stack.png" alt="Stack" class="socialMedia"></a>
</div>
</div>
<footer id="portfoliofooter">
<p>Copyright @ 2017 Sergey Shcherbakov</p>
</footer>
</body>
</html>