-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
101 lines (89 loc) · 3.36 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
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE HTML>
<html>
<head>
<style>
body{
text-align: center;
}
nav{
background-color: rgb(255, 177, 60);
border-radius: 200px;
}
#words{
text-align: center;
}
.links{
background-color: rgb(255, 238, 0);
}
.links2{
background-color: tomato;
}
.links3{
background-color: darkgoldenrod;
}
h1 {
font-size: 40px;
}
h2 {
font-size: 40px;
}
h3 {
font-size: 36px;
}
#all-contents {
height: 100ch;
margin: none;
}
a {
font-size: 40px;
}
.letece{
background-color: greenyellow;
color: greenyellow;
}
.morestuff{
background-color: rgb(255, 177, 60);
border-radius: 200px;
color: rgb(255, 177, 60);;
}
</style>
</head>
<body bgcolor="15eb26f">
<div id="all-contents">
<nav>
<h1 id="words">Caidens Sandwitch Portfolio</h1>
<ul class="links">
<li class="nav-li">
<a class="nav-a" href="index.html">Home</a>
</li>
<li class="nav-li">
<a class="nav-a" href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
<h2 class="letece">00</h2>
<main>
<div class="content">
<h1 class="links2">Portfolio</h1>
<ul class="links3">
<li><a href="All The Stuff/projects/platformer/index.html">Platformer : A cannon - dodging, collectible - grabbing adventure game for Halleb0t</a></li>
<li><a href="All The Stuff/projects/bouncing-box/index.html">Bouncing Box : A project that gives you a taste of game development on the web </a></li>
<li><a href="All The Stuff/projects/circularity/index.html">Circularity : A motion poem using random number generation and velocity applied to circle shapes...</a></li>
<li><a href="All The Stuff/projects/runtime/index.html"> Data Shapes: Iteration practice with patterns</a></li>
<li><a href="All The Stuff/asd-projects/debugging-exercise/index.html"> Debugging Exercise: A debugging exercise</a></li>
<li><a href="All The Stuff/asd-projects/snake/index.html">Snake: Feed the snake or be fed upon</a></li>
<li><a href="asd-projects/walker">Walker: Practice user input by animating walking boxes</a></li>
<li><a href="asd-projects/image-filtering">Image Filtering: Filter images using loops</a></li>
<li><a href="asd-projects/sorting-exercise">Sorting Exercise: An exercise on sorting algorithms</a></li>
<li><a href="dice.html">Dice App</a></li>
</ul>
<h1 class="morestuff">00
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
</h1>
</div>
</main>
</div>
</body>
</html>