-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 2.24 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
<!DOCTYPE html>
<!-- Stony Brook Far Beyond Text generator made by Matthew Del Signore -->
<html>
<head>
<title>Far Beyond Slogan Generator</title>
<link href='https://fonts.googleapis.com/css?family=Droid+Sans:700' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body>
<script src="./js/main.js"></script>
<div class="container">
<div class="row">
<div class = "col-md-6 col-md-offset-3">
<img class="img-responsive" src="images/genetor logo.png" alt="logo"></img>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-6">
<form>
<div class="form-group">
<label for="textInput1">Line 1</label>
<input type="text" class="form-control" id="textInput1" placeholder="Text">
</div>
<div class="form-group">
<label for="textInput2">Line 2</label>
<input type="text" class="form-control" id="textInput2" placeholder="Text">
</div>
<div class="form-group">
<label for="textInput3">Line 3</label>
<input type="text" class="form-control" id="textInput3" placeholder="Text">
</div>
<div class="form-group">
<label for="bgSelect">Background Image</label>
<select id="bgSelect" class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<button type="button" class="btn btn-default" id="generateButton">Generate</button>
</form>
</div>
<div class="col-md-6" style="font-family: Droid Sans;">
<canvas id="mainCanvas" width=800 height=517></canvas>
</div>
</div>
</div>
</body>
</html>