-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstarted.html
54 lines (46 loc) · 1.05 KB
/
started.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
<html>
<head>
<title>CPU</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/palette.min.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/main.css">
<style type="text/css">
.article {
font-family:'Roboto', sans-serif;
background:white;
font-size:16pt;
margin:0 auto;
width:80%;
max-width:800px;
padding:2em 3em;
margin-top:3em;
line-height:1.5em;
}
.article h1 {
margin:1em 0;
}
.article a {
color:#40B4DD;
}
.article a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="article">
<h1>Learning Resources</h1>
<p>Here are some resources to get started.</p>
<p>Create accounts on:<p>
<ul>
<li>Codepen</li>
<li>Github</li>
<li>Stack Overflow</li>
</ul>
</div>
</div>
</body>