-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqoute.html
More file actions
35 lines (32 loc) · 1.36 KB
/
qoute.html
File metadata and controls
35 lines (32 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<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=Roboto&display=swap" rel="stylesheet">
<title>QOUTE APP</title>
<link rel="stylesheet" href="qoute.css">
</head>
<body>
<div class="container">
<div class="heading">
Javascript Qoute Generator
</div>
<div class="content">
<div class="text-area">
<span class="qoute">
"i do the best i know how - the very best i can; and i mean to keep pn doing so until the end."
</span>
</div>
<div class="person">Abraham Lincoln</div>
<div class="button-area">
<button class="new-qoute">New Qoute</button>
</div>
</div>
</div>
<script src="qoute.js"></script>
</body>
</html>