-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tutorializr</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Make your own HTML+CSS tutorials!">
<meta name="author" content="Maria Grazia Alastra">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link rel="shortcut icon" href="img/favicon.ico" />
</head>
<body>
<div class="container">
<div class="masthead">
<h3>alpha</h3>
</div>
<!-- Jumbotron -->
<div class="jumbotron">
<h1 class="text-center">Tutorializr</h1>
<p class="lead text-center">
Did you ever wish to make your own tutorials, but gave up because setting up the interface everytime would have been an enormous
time waste? Well, today you can forget about the UI and focus on the content, thanks to Tutorializr!
</p>
<a class="btn btn-large btn-warning text-center" href="editor.html">Get started now</a>
</div>
<hr>
<div class="footer">
<p>
© Maria Grazia Alastra 2013
</p>
</div>
</div>
<script src="js/jquery.1.9.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>