-
Notifications
You must be signed in to change notification settings - Fork 0
/
quotes.html
59 lines (51 loc) · 1.72 KB
/
quotes.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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Famous Quotes</title>
<link rel="stylesheet" href="quotes.css">
</head>
<body>
<header>
<h1>Famous Quotes</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home">
<h2>Welcome to Famous Quotes</h2>
<blockquote>
"The only way to do great work is to love what you do." - Steve Jobs
</blockquote>
<blockquote>
"Success is not final, failure is not fatal: It is the courage to continue that counts." - Winston Churchill
</blockquote>
<button>Add a Quote</button>
</section>
<section id="about">
<h2>About Famous Quotes</h2>
<p>This webpage was created to inspire and motivate you with famous quotes from successful people.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2023 Famous Quotes. All rights reserved.</p>
</footer>
<script src="secret.js"></script>
</body>
</html>