-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.63 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
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FeedFusion</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to FeedFusion</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Us</h2>
<p>FeedFusion is your go-to platform for all your content needs. We help you stay connected and informed!</p>
</section>
<section id="services">
<h2>Our Services</h2>
<ul>
<li>NEW TRALLY MAKER</li>
<li>REPAIR SERVICES</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form id="contactForm">
<label for="name">Name:</label>
<input type="text" id="name" value="KIRAN" required>
<label for="email">Email:</label>
<input type="email" id="email" value="kiran360b@gmail.com" required>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" value="8073894247" required>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>© 2023 FeedFusion. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>