-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Baskervville:ital@1&family=Lato:ital,wght@0,300;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<title>Random Quote Generator</title>
</head>
<body>
<header>
<img src="images/mobile_logo.svg" alt="logo" width="200" height="50">
<div class="links">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24">
<g transform="translate(24 0) scale(-1 1)">
<path d="M11 7.05V4a1 1 0 0 0-1-1a1 1 0 0 0-.7.29l-7 7a1 1 0 0 0 0 1.42l7 7A1 1 0 0 0 11 18v-3.1h.85a10.89
10.89 0 0 1 8.36 3.72a1 1 0 0 0 1.11.35A1 1 0 0 0 22 18c0-9.12-8.08-10.68-11-10.95zm.85 5.83a14.74 14.74 0
0 0-2 .13A1 1 0 0 0 9 14v1.59L4.42 11L9 6.41V8a1 1 0 0 0 1 1c.91 0 8.11.2 9.67 6.43a13.07 13.07 0 0 0-7.82-2.55z" fill="#F69EF8"/>
</g>
</svg>
<span class="pipe">|</span>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48">
<path fill="transparent" stroke="#F69EF8" stroke-width="4.5" d="M37 40H11l-6 6V12c0-3.3 2.7-6 6-6h26c3.3 0 6 2.7 6 6v22c0 3.3-2.7 6-6 6z"/>
<g fill="#fff">
<path d="M22 20h4v11h-4z"/><circle cx="24" cy="15" r="2"/>
</g>
</svg>
</div>
</header>
<main>
<section>
<h1>"Don’t let the fear of losing be greater than the excitement of winning."</h1>
<p class="author">Robert Kiyosaki</p>
</section>
<svg xmlns="https://www.w3.org/2000/svg" width="200" height="40" id="generator">
<polygon points="0, 0 170, 0 200, 38 0, 38" stroke="#F69EF8" fill="transparent"></polygon>
<text x="85" y="25" text-anchor="middle" font-size="22px" fill="#F69EF8">Generate Quote</text>
</svg>
</main>
<script src="script.js"></script>
</body>
</html>