This repository was archived by the owner on Apr 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (40 loc) · 1.34 KB
/
index.html
File metadata and controls
52 lines (40 loc) · 1.34 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
52
<!DOCTYPE html>
<html>
<head>
<title>randomQuoteMachine</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
type="text/css" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Cedarville Cursive">
</head>
<body>
<div class=cardBackground>
<div class=cardContent>
<div class=cardHeader>
<div class=cardTitle>
<h1>randomQuotes</h1>
</div>
<a>
<div class=cardShare>
<a href="#" onclick="cardTweet()">
<i class="fa fa-twitter fa-2x expandable" aria-hidden="true"></i>
</div>
</a>
</div>
<div class=cardText>
<blockquote class=rquoteText>Hello World!</blockquote>
</div>
<div class=cardButton>
<button id="getMessage" class="buttonClass">
getQuote
</button>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>