-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
50 lines (50 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:type" content="website">
<meta property="og:url" content="https://thatswhatshesaid.pages.dev">
<meta property="og:site_name" content="thatswhatshesaid">
<meta property="og:image" itemprop="image primaryImageOfPage" content="https://thatswhatshesaid.pages.dev/preview.webp">
<meta name="description" content="Random 'The Office' quote generator">
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@_zachdanielson">
<meta name="twitter:url" content="https://thatswhatshesaid.pages.dev">
<meta name="twitter:title" content="thatswhatshesaid">
<meta name="twitter:description" content="Random 'The Office' quote generator">
<meta name="twitter:image" content="https://thatswhatshesaid.pages.dev/preview.webp">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<link rel="icon" href="https://thatswhatshesaid.pages.dev/favicon.ico?v=2">
<title>thatswhatshesaid</title>
</head>
<body onload="getQuote()">
<div class="main">
<div class="titleContainer">
<a class="title" href="https://thatswhatshesaid.pages.dev">👔 thatswhatshesaid</a>
<div class="desc">Random "The Office" quote generator</div>
</div>
<div class="buttonContainer">
<a href="https://thatswhatshesaid.pages.dev" class="button">🔄 refresh</a>
<a id="tweet" href="" target="_blank" class="button">📢 tweet</a>
</div>
<div class="quoteContainer">
<div class="quoteBox">
<div class="quote" id="quote"></div>
<div class="character" id="character"></div>
</div>
</div>
<div class="footer">
<a class="author" href="https://github.com/zx-xch?tab=repositories" target="_blank">👋🏾 @zachdanielson</a>
<div class="sourceContainer">
<a class="source" href="https://github.com/AkashRajpurohit/the-office-api" target="_blank">API</a>
<a class="source" href="https://www.peacocktv.com/stream-tv/the-office" target="_blank">Watch</a>
</div>
</div>
</div>
</body>
</html>