forked from whitehatjr/StudentPortfolio1.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (55 loc) · 2.14 KB
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<title>My Portfolio page</title>
<link rel = "stylesheet"
type = "text/css"
href = "style.css" />
</head>
<body>
<div class="header">
<h1>Student Name</h1>
<div class="menu">
<a href="index.html">Projects</a>
<a href="aboutme.html">About Me</a>
</div>
</div>
<h2>These are some games designed by me</h2>
<p>Games use p5.js, p5.play and matter.js libraries in javascript</p>
<div class = "grid">
<div class="item">
<a href = "https://editor.p5js.org/whitehatjr/present/ePJrHCACM"><img src="https://via.placeholder.com/300"/></a>
<p>Trex Runner Game</p>
</div>
<div class="item">
<a href = "#"><img src="https://via.placeholder.com/300"/></a>
<p>Name of game 2</p>
</div>
<div class="item">
<a href = "#"><img src="https://via.placeholder.com/300"/></a>
<p>Name of game 3</p>
</div>
<div class="item">
<a href = "#"><img src="https://via.placeholder.com/300"/></a>
<p>Name of game 4</p>
</div>
<div class="item">
<a href = "#"><img src="https://via.placeholder.com/300"/></a>
<p>Name of game 5</p>
</div>
<div class="item">
<a href = "#"><img src="https://via.placeholder.com/300"/></a>
<p>Name of game 6</p>
</div>
<div class="item">
<a href = "#"><img src="https://via.placeholder.com/300"/></a>
<p>Name of game 7</p>
</div>
</div>
<div class="footer">
<a href="#"><img src="fb.png" width=50 height=50/></a>
<a href="#"><img src="insta.png" width=50 height=50/></a>
<a href="#"><img src="youtube.png" width=50 height=50/></a>
</div>
</body>
</html>