-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (42 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title>Random Quote Machine</title>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=El+Messiri|Exo+2" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link type="text/css" rel="stylesheet" href="style/my.css">
</head>
<body>
<div id="mainContainer">
<div class="content">
<div id="circle"></div>
<h1>Random Quote Machine</h1>
<span class="quoteLeft symbol"></span>
<div id="quoteContainer">
<p class="quoteContent"></p>
<p class="quoteBy">
<span class="line"></span>
<span class="content">Al-Quran (94, 5)</span>
</p>
</div> <!-- #quoteContainer -->
<span class="quoteRight symbol"></span>
<div id="links">
<div class="nextQuote">
<p>Get another quote</p>
</div>
<div class="tweetContainer">
<a href="" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</div>
</div> <!-- .links -->
</div> <!-- .content -->
<div id="footer">
<footer class="content">by <a href="https://www.freecodecamp.com/aizazshahid" target="_blank">Aizaz Shahid</a></footer>
</div>
</div> <!-- #mainContainer -->
<script src="script/getStyle.js"></script>
<script src="script/my.js"></script>
</body>
</html>