-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (73 loc) · 3.23 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
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0" charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="index.css">
<script async type="text/javascript" src="index.js"></script>
</head>
<body onload="onLoad();">
<div id="darkenScreen" class="darkenScreen"></div>
<div id="header" class="header" onclick="changeBackground();">MY PORTFOLIO</div>
<br><br><br><br>
<div id="firstLine" style="margin-bottom: 1.5vw;" class="lineDivs">
<a href="./Icon Animation/index.html" target="_blank" style="margin-right: 1.5vw;">
<div id="card0" class="myCards">
<div id="wrap0" class="wrapper"></div>
<div style="z-index: 1;">ICON ANIMATION</div>
<div class="innerDivs">
<div id="inner0" class="innersContent">Designed for mobile devices.</div>
</div>
</div>
</a>
<a href="./Countdown/index.html" target="_blank" style="margin-right: 1.5vw; margin-left: 1.5vw;">
<div id="card1" class="myCards">
<div id="wrap1" class="wrapper"></div>
<div style="z-index: 1;">COUNTDOWN</div>
<div class="innerDivs">
<div id="inner1" class="innersContent">Designed for mobile devices.</div>
</div>
</div>
</a>
<a href="./Word Counter/index.html" target="_blank" style="margin-left: 1.5vw;">
<div id="card2" class="myCards">
<div id="wrap2" class="wrapper"></div>
<div style="z-index: 1;">WORD COUNTER</div>
<div class="innerDivs">
<div id="inner2" class="innersContent">Designed for PCs.</div>
</div>
</div>
</a>
</div>
<br>
<div id="secondLine" style="margin-top: 1.5vw;" class="lineDivs">
<a href="./Snake Game/index.html" target="_blank" style="margin-right: 1.5vw;">
<div id="card3" class="myCards">
<div id="wrap3" class="wrapper"></div>
<div style="z-index: 1;">SNAKE GAME</div>
<div class="innerDivs">
<div id="inner3" class="innersContent">Designed universal.</div>
</div>
</div>
</a>
<a href="./Sudoku Game/index.html" target="_blank" style="margin-right: 1.5vw; margin-left: 1.5vw;">
<div id="card4" class="myCards">
<div id="wrap4" class="wrapper"></div>
<div style="z-index: 1;">SUDOKU GAME</div>
<div class="innerDivs">
<div id="inner4" class="innersContent">Designed universal.</div>
</div>
</div>
</a>
<a href="./Tic-Tac-Toe Game/index.html" target="_blank" style="margin-left: 1.5vw;">
<div id="card5" class="myCards">
<div id="wrap5" class="wrapper"></div>
<div style="z-index: 1;">TIC-TAC-TOE GAME</div>
<div class="innerDivs">
<div id="inner5" class="innersContent">Designed for mobile devices.</div>
</div>
</div>
</a>
</div>
<br>
</body>
</html>