-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (25 loc) · 1009 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Random Quote Machine</title>
<link href="css/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">
</head>
<body>
<div id="quoteBox">
<div id="quote" class="quoteSection">
<iframe src="http://www.google.com/" allowtransparency="true" style="background: #FFFFFF; width=500 height="500" frameborder="1" align="middle"></iframe>
</div>
<div id="quoteText" class="quoteText"></div>
<div id="quoteButton" class="quoteButton"><button id="quoteButton" type="button">New quote!</button></div>
<div id="author" class="authorName"></div>
<div id="socialButton" class="socialButton"></div>
</div>
</body>
<script src="script.js"></script>
</html>