-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (91 loc) · 2.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Patrick's New Home Page in HTML!</title>
<style>
body {
background-color: lightblue;
}
#gridFormat {
display: grid;
grid-template-columns: auto;
margin: 0 30%;
text-align: center;
}
a {
padding: 1px;
}
ul {
padding: 0;
display:inline-block;
}
a:not(#resume):hover {
background-color: aqua;
color: green;
border: dashed black 1px;
padding: 0px;
}
h1 {
text-align: center;
}
h1,
h2:active {
color: blue;
}
a:visited {
color: #97ACB3;
}
#terminal {
background-color: black;
color: rgb(0, 255, 0);
}
#resume {
text-shadow: 1px 1px 10px black;
/*I want it to look like an h3 tag but the margin is weird if i do otherwise.*/
font-size: 1.17em;
font-weight: bold;
}
#resume:hover {
text-shadow: 1px 1px 2px black;
}
#gridFormat>div>h2{
margin-bottom:1%
}
.part{
border:1px grey solid;
margin-bottom:5%;
padding-bottom:5%;
}
li{
list-style-type:"-";
}
</style>
</head>
<body>
<div id="gridFormat">
<div class="part">
<h2>Portfolio</h2><br>
<ul>
<li><a id="resume" href=Resume/resume.html>Resume</a></li>
</ul>
</div>
<div class="part">
<h2>Current projects:</h2><br>
<ul>
<li><a href="roguelike/">badly made roguelike</a></li>
<li><a href="CIWsite/index.html">CIW lessons</a></li>
</ul>
</div>
<div class="part">
<h2>Old Works:</h2><br>
<ul>
<li><a href="eloquentJS/index.html">Eloquent Javascript (OLD)</a></li>
<li><a href="terminal/terminal.html"><span id="terminal">Terminal (OLD)</span></a></li>
</ul>
</div>
</div>
<footer id="vLinks"></footer>
<script>/*for the footer*/var loc = window.location.href; var linkStr = '<a href="http://validator.w3.org/check?uri=' + loc + '">\n<strong> HTML </strong> Valid! </a> |' + ' <a href="http://jigsaw.w3.org/css-validator/validator?uri=' + loc + '?profile=css3">\n<strong> CSS </strong> Valid! </a>'; var footer = document.getElementById("vLinks"); footer.innerHTML = linkStr;</script>
</body>
</html>