-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolio2.html
More file actions
160 lines (114 loc) · 5 KB
/
Copy pathPortfolio2.html
File metadata and controls
160 lines (114 loc) · 5 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html>
<head>
<Title>Portfolio</Title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=0.7">
<style>
body {
background-image: url("assets/images/background.png");
}
</style>
</head>
<Body>
<Header>
<!--Main Box for the header-->
<div style="position: fixed;"
id="border">
<!--Container for all header content-->
<div id=contentcontainer>
<!--Box for link to about page-->
<div class="Rlinks"
id="aboutbox"><a style="text-decoration:none" href="./Index.html">About</a></div>
<!--Indent between about and porfolio links-->
<div id=indent1><p class="indent">|</p></div>
<!--Box for link to portfolio page-->
<div class="Rlinks"
id="portfoliobox"
><a style="text-decoration:none" href="./Portfolio.html">Portfolio</a></div>
<!--Indent between porfolio and contact links-->
<div id="indent2"><p class="indent">|</p></div>
<!--Box for link to contact page-->
<div class="Rlinks"
id="contactbox"><a style="text-decoration:none" href="./contact.html">Contact</a></div>
</div>
<div id="namebox">
<h2 id="name"
style="text-align: center;
margin-top: 25px;
font-size: 35px;">Nolan Hewitt</h2>
</div>
</div>
</Header>
<!--Main content box-->
<div class="main-container">
<div class="mainsection2">
<!--Header text-->
<h2 id="About"
style="margin-top: 40px;
font-size: 35px;"
>Portfolio</h2>
<a href="./Portfolio.html"><p style="text-decoration: underline; position: absolute; text-align: left; margin-left: 32.5px; margin-top: 5px">1</p></a>
<a href="./Portfolio2.html"><p style="text-decoration: underline; position: absolute; text-align: left; margin-left: 45.5px; margin-top: 5px">2</p></a>
<!--Line in box under header text-->
<div id="underline"
style= "height: 2px;
background-color: lightgrey;
margin-left: 30px;
margin-top: 30px;">
</div>
<!--Images Row 1 Here-->
<div style="margin-left: 3.25%;
margin-top: 25px;">
<!--Project 7-->
<a href="https://zombieclickergame.herokuapp.com/" target="_blank">
<img id="project1" class="projects" src="./assets/images/zombieclicker.png" alt="psy">
<div id="projectdescription1"><p class="ProjectText">Zombie Clicker (Desktop)</p></div>
</a>
<!--Project 8-->
<a href="https://rotationgame.herokuapp.com/" target="_blank">
<img id="project2" class="projects" src="./assets/images/RotatorGame.jpg" alt="crystal">
<div id="projectdescription2"><p class="ProjectText">Space Rotator (Mobile)</p></div>
</a>
<!--Project 9-->
<a href="http://www.google.com" target="_blank">
<img id="project3" class="projects" src="./assets/images/cat4.jpg" alt="cat5">
<div id="projectdescription3"><p class="ProjectText">Comming Soon...</p></div>
</a>
</div>
<!--Images Row 2 Here-->
<div style="margin-left: 3.25%;
margin-top: 250px;">
<!--Project 10-->
<a href="http://www.google.com" target="_blank">
<img id="project4" class="projects" src="./assets/images/cat5.jpg" alt="cat6">
<div id="projectdescription4"><p class="ProjectText">Comming Soon...</p></div>
</a>
<!--Project 11-->
<a href="http://www.google.com" target="_blank">
<img id="project5" class="projects" src="./assets/images/cat6.jpg" alt="cat7">
<div id="projectdescription5"><p class="ProjectText">Comming Soon...</p></div>
</a>
<!--Project 12-->
<a href="http://www.google.com" target="_blank">
<img id="project6" class="projects" src="./assets/images/cat7.jpg" alt="cat8">
<div id="projectdescription6"><p class="ProjectText">Comming Soon...</p></div>
</a>
</div>
</div>
</div>
</div>
<footer>
<div style="width: 100%;
height: 70px;
background-color: #666666;
position: fixed;
bottom: 0;
z-index:2;
border-top: 8px solid #4aaaa5;
text-align: center;"><p id=copyright style="margin-top: 45px;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
">Copyright©</p></div>
</footer>
</Body>
</html>