-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
119 lines (111 loc) · 4.1 KB
/
project.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Creative Digital Agency</title>
<link rel="stylesheet" href="project.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<div class="logo">
<h1>Landing Page</h1>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<a href="#contact" class="cta-button">Request a Quote</a>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content">
<h2>Creative Digital Agency</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a href="#about" class="cta-button">Learn More</a>
<a href="#contact" class="cta-button">Get Started</a>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container">
<div class="feature">
<i class="icon">🚀</i>
<h3>Launch Business</h3>
<p>Quick start your business journey.</p>
</div>
<div class="feature">
<i class="icon">🖥️</i>
<h3>Online Support Team</h3>
<p>Get 24/7 customer support.</p>
</div>
<div class="feature">
<i class="icon">⏳</i>
<h3>Time Management</h3>
<p>Effective management for your projects.</p>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container about-content">
<div class="about-text">
<h2>About Us</h2>
<p>We have 15 years of experience in achieving better results for clients.</p>
<a href="#services" class="cta-button">Our Services</a>
</div>
<div class="about-image">
<img src="about-us-image.jpg" alt="About Us">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="services">
<div class="container">
<h2>Our Services</h2>
<div class="service-cards">
<div class="service-card">
<img src="service1.jpg" alt="User Experience">
<h3>User Experience</h3>
</div>
<div class="service-card">
<img src="service2.jpg" alt="Creative Design">
<h3>Creative Design</h3>
</div>
<div class="service-card">
<img src="service3.jpg" alt="Retina Ready">
<h3>Retina Ready</h3>
</div>
</div>
</div>
</section>
<!-- Contact Form Section -->
<section id="contact" class="contact">
<div class="container">
<h2>Contact Us</h2>
<form id="contact-form">
<input type="text" id="name" placeholder="Your Name" required>
<input type="email" id="email" placeholder="Your Email" required>
<textarea id="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit" class="cta-button">Send Message</button>
</form>
<div id="form-result"></div>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="container">
<p>© 2024 Creative Digital Agency. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>