-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqoutable.html
More file actions
33 lines (30 loc) · 1.03 KB
/
qoutable.html
File metadata and controls
33 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qoutable API</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul class="navbar">
<li><a href="qoutable.html">Quotable</a></li>
<li><a href="dadjokes.html">Dad Jokes</a></li>
<li><a href="tvshows.html">TV Shows</a></li>
<li><a href="weaterapp.html">Weather App</a></li>
<li><a href="todolist.html">To-Do List</a></li>
</ul>
</nav>
<section class="container">
<h1 class="title">Qoutes</h1>
<div class="content">
<h2 class="qoutes">Click button For Qoutes</h2>
<h3 class="testimonial"></h3>
<button class="btn">Qoute</button>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="qoutableScripts.js"></script>
</body>
</html>