-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (52 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Adapted from the Skeleton template -->
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Creative Scala</title>
<meta name="description" content="Creative Scala is the book for new developers who want to learn Scala and have fun.">
<meta name="author" content="Noel Welsh">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<style>
p { font-family: "Libre Baskerville"; }
</style>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="twelve column" style="margin-top: 25%">
<h1>Creative Scala</h1>
<p>The book for new developers who want to learn Scala and have fun.</p>
<ul>
<li><a href="creative-scala.html">Read it online</a></li>
<li><a href="creative-scala.pdf">Download a PDF</a></li>
<li><a href="creative-scala.epub">Download an ePUB for eBook readers</a></li>
<li><a href="https://github.com/underscoreio/creative-scala">Get the source.</a></li>
</ul>
<p><a href="https://docs.google.com/forms/d/e/1FAIpQLSe8j48poBiEuQGX2AuPuZiG7-DKGQ3STjigi3TkRTfr7IOF_A/viewform">Get notified of updates and events.</a></p>
<h2>Documentation for Doodle</h2>
<p>Doodle is a Scala library for 2D vector graphics, used in Creative Scala. <a href="doodle/index.html">Documentation is here.</a></p>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>