generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quotes.html
53 lines (52 loc) · 2.17 KB
/
quotes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A fun quiz for fans of Star Trek and Star Trek Voyager">
<meta name="keywords" content="star trek, voyager, fans, quiz">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="./assets/favicon/apple-touch-icon.png">
<link href="https://cdn.lineicons.com/3.0/lineicons.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous"/>
<link rel="stylesheet" href="./assets/css/styles.css">
<title>Trekkies Games - Quotes</title>
</head>
<body class="quotes-bg">
<!-- header area for game logo -->
<div>
<a href="index.html" class="logo">
<h1 class="logo">Trekkies Games</h1>
</a>
</div>
<!-- welcome area -->
<div class="mission-container">
<h2 class="mission-intro">
Welcome to your final mission, Trekkie. Your mission is to look for a quote you like
and share them on social media.
</h2>
</div>
<!-- quotes area -->
<div class="quote-container" id="quote-container">
<div class="quote-text">
<i class="fas fa-quote-left quote-icon"></i>
<span id="quote"></span>
</div>
<!-- quote author -->
<div class="quote-author">
<span id="author"></span>
</div>
<!-- buttons -->
<div class="button-container">
<button class="twitter-button" id="twitter" title="Tweet This!">
<i class="lni lni-twitter-filled"></i>
</button>
<button id="new-quote">New Quote</button>
</div>
</div>
<script src="./assets/js/quote.js" defer></script>
</body>
</html>