This repository was archived by the owner on May 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (94 loc) · 3.99 KB
/
index.html
File metadata and controls
94 lines (94 loc) · 3.99 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Suite of PDF tools for all your needs">
<meta name="keywords" content="PDF tools, compress PDF, merge PDF, manage PDF">
<title>PDF Tools Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container" id="logo">
<div class="logo">
<img src="logo.png" alt="PDF Tools Logo">
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<div class="cta-buttons">
<a href="#" class="btn">Get Started</a>
<a href="#" class="btn">Try for Free</a>
</div>
</header>
<main>
<section id="home" class="section">
<div class="container" >
<h1>Transform Your PDF Experience</h1>
<p>The ultimate suite of PDF tools to manage your documents effortlessly.</p>
<a href="#" class="btn-hero">Get Started</a>
</div>
</section>
<section id="tools" class="section">
<div class="container">
<h2>Our Tools</h2>
<div class="features-container">
<div class="feature">
<img src="compress-icon.png" alt="Compress PDF">
<h3>Compress PDF</h3>
<p>Reduce the size of your PDF files without compromising quality.</p>
<a href="#" class="btn">Try Now</a>
</div>
<div class="feature">
<img src="merge-icon.png" alt="Merge PDF">
<h3>Merge PDF</h3>
<p>Combine multiple PDF files into one cohesive document.</p>
<a href="#" class="btn">Try Now</a>
</div>
</div>
</div>
</section>
<section id="about" class="section">
<div class="container">
<h2>About Us</h2>
<p>Welcome to PDF Tools, your ultimate destination for managing PDF documents with ease. Our mission is to simplify your document management tasks through innovative tools and solutions.</p>
</div>
</section>
<section id="contact" class="section">
<div class="container">
<h2>Contact Us</h2>
<p>Have a question or feedback? Fill out the form below and we'll get back to you shortly:</p>
<form action="#" method="POST" class="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" rows="4" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-links">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
</div>
<div class="social-media">
<a href="#"><img src="facebook-icon.png" alt="Facebook"></a>
<a href="#"><img src="twitter-icon.png" alt="Twitter"></a>
</div>
<div class="contact-info">
<p>Contact us at: support@pdftools.com</p>
</div>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>