-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (72 loc) · 2.08 KB
/
index.html
File metadata and controls
86 lines (72 loc) · 2.08 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
<!DOCTYPE html>
<!-- JS Projects Homepage - by Ted Silbernagel -->
<html>
<head>
<!-- Boilerplate, CSS -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="projects/skeleton/normalize.css">
<link rel="stylesheet" href="projects/skeleton/skeleton.css">
<style>
/* Global defaults */
body {
background-color: #353b48;
color: #dcdde1;
}
/* Set up header and title */
#headerBlock {
color: #dcdde1;
margin-top: 3%;
}
#mainTitle {
font-weight: bold;
}
/* Add some padding */
.row>div {
margin-bottom: 3%;
}
/* Make links bigger */
.row>div>a {
font-size: 1.6em;
}
</style>
<!-- Disable caching -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Title, description, author -->
<title>JSProjects - Ted Silbernagel</title>
<meta name="description" content="JSProjects landing site">
<meta name="author" content="Ted Silbernagel">
<!-- Font import -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Header -->
<div class="row" id="headerRow">
<div class="twelve columns" id="headerBlock">
<h3 id="mainTitle">JS Projects - Ted Silbernagel</h3>
</div>
</div>
<!-- Descriptive Stats link -->
<div class="row" id="descriptiveStatsRow">
<div class="twelve columns">
<a href="projects/descriptive_stats">Descriptive Stats</a>
</div>
</div>
<!-- Numbers Game link -->
<div class="row" id="numbersGameRow">
<div class="twelve columns">
<a href="projects/numbers_game">Numbers Game</a>
</div>
</div>
<!-- TicTacToe link -->
<div class="row" id="ticTacToeRow">
<div class="twelve columns">
<a href="projects/tic_tac_toe">TicTacToe</a>
</div>
</div>
</div>
</body>
</html>