-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (46 loc) · 1.56 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
60
61
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity>
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Quattrocento+Sans' rel='stylesheet' type='text/css'>
<meta charset="utf8">
<title>Lana Ipsum</title>
</head>
<body>
<div class="container-full text-center" id="wrapper">
<div id="title-container">
<h1>Lana ipsum</h1>
</div>
</div>
<div class="container text-left">
<div id="intro-container">
<h2><small>A lorem ipsum generator inspired by <a href="http://lanadelrey.com">Lana Del Rey</a>. Pick your options and get some of that summertime sadness.</small></h2>
</div>
<div id="options" class="form">
<div class="form-group">
<label for="userlength">
Number of words:
</label>
<input type="text" class="form-control" id="userlength" value="100">
</div> <br />
<div class="form-group">
<label for="sentencelength">
Minimum sentence length in words:
</label>
<input type="text" class="form-control" id="sentencelength" value="5">
</div><br />
<div class="text-center">
<button id="button">Lana me</button>
</div>
</div>
<div id="textbox" class="text-justify">What's the word?</div>
</div>
<br/><br/>
<div class="well">
<p>Emily Chapman lives in LA. She has a <a href="https://tinyletter.com/emchap">newsletter</a>.</p>
</div>
<script src="script.js"></script>
</body>
</html>