-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (59 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css">
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<title>Quote Generator</title>
</head>
<body>
<section>
<div class="container" id="container" >
<div class="row flex-top justify-content-center">
<h1 class="col-12 col-lg-12 text-center">Quotes Generator</h1>
<div>
<button type="button" id="quoteBtn" class="col-3 col-lg-3 quoteBtn">
Generate
</button>
</div>
<div justify-content-center class="col-3 col-lg-3">
<form method="post" action="traitement.php">
<p>
<input type="radio" name="em" value="motivational" id="motivational" checked
/> <label for="motivational">Motivational</label><br />
<input type="radio" name="em" value="funny"
id="funny" /> <label for="funny">Funny</label><br />
</p>
</form>
</div>
<div justify-content-center>
<form method="post" action="traitement.php">
<p>
<label for="quotes">Number of Quotes</label><br />
<select name="count" id="count">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</p>
</form>
</div>
</div>
<div class="quoteDiv">
<h1 class="quoteTxt text-content-center text-align-center" id="quote" >This is a quote placeholder</h1>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="P5_02_javascriptfile.js"></script>
</body>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" ></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" ></script>