-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 979 Bytes
/
index.html
File metadata and controls
31 lines (28 loc) · 979 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Bob's Random Life Advice</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="app">
<header class="header">
<div class="title">Bob’s Random Life Advice</div>
<div class="tagline">Bob knows... maybe.</div>
</header>
<section class="card">
<div class="avatar" id="avatar">🧔♂️</div>
<blockquote class="quote" id="quote">Click "Ask Bob" to get your wisdom.</blockquote>
<div class="meta">
<button id="askBtn" class="primary">Ask Bob</button>
<button id="copyBtn" title="Copy quote">Copy</button>
<a id="tweetBtn" class="tweet" target="_blank" rel="noopener">Tweet</a>
</div>
</section>
<footer class="footer">Made with ❤️ for chaotic wisdom.</footer>
</main>
<script src="script.js"></script>
</body>
</html>