-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (26 loc) · 1.02 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Random Quotes</title>
<script src="https://use.fontawesome.com/5bdc10d041.js"></script>
<link href="https://fonts.googleapis.com/css?family=Capriola" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="quote-container">
<blockquote class="quote">
<p>Mert nem a félelem lelkét adta nekünk Isten, hanem az erő, a szeretet és a józanság lelkét.</p>
<footer>2 Tim 1.7</footer>
</blockquote>
<div class="buttons clearfix">
<a id="twitter" href="https://twitter.com/intent/tweet" class="twitter" target="_blank" title="Tweet this quote!"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<button id="new-quote" class="new-quote">Új idézet</button>
</div>
</div>
<canvas class="canvas" id ="my-canvas">
</canvas>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>