-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
51 lines (41 loc) · 1.7 KB
/
example.html
File metadata and controls
51 lines (41 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Send Me Moolah</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.css">
</head>
<body>
<div class="container">
<h3 class="text-muted">HTML Drawing Pad</h3>
<div class="jumbotron">
<h1>Better than sliced bread!</h1>
<p class="lead">It will read the HTML source code from any URL you provide, and then draw the resulting elements right on your screen!</p>
<p><a class="btn btn-lg btn-success" href="#">Get started today</a></p>
</div>
<div class="row">
<div class="col-lg-4">
<h2>Simple</h2>
<p>Real simple to use. Just type in a URL and watch the magic happen.</p>
<p><a class="btn btn-primary" href="#">View details »</a></p>
</div>
<div class="col-lg-4">
<h2>Easy</h2>
<p>Real easy to use. Just type in a URL and watch the magic happen.</p>
<p><a class="btn btn-primary" href="#">View details »</a></p>
</div>
<div class="col-lg-4">
<h2>Straightforward</h2>
<p>It's straightforward to use. Yes, I just said the same thing three times. West Wing fans will get the joke.</p>
<p><a class="btn btn-primary" href="#">View details »</a></p>
</div>
</div>
<div class="footer">
<p>© My Company 2013. Got questions? Keep 'em to yourself!</p>
</div>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
</body>
</html>