-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMy_website.html
69 lines (65 loc) · 1.95 KB
/
My_website.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enhanced Website</title>
<link rel="stylesheet" href="res.css">
</head>
<body>
<!-- Navbar -->
<header class="navbar">
<div class="container">
<h1 class="logo">Personal <span>Site</span></h1>
<nav>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<h2>Welcome to my site for Amazing Experience</h2>
<p>Try using it to begin your web journey here</p>
<a href="#about" class="btn">Explore Now</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<h2>About Us</h2>
<p>We are a creative team dedicated to building stunning websites that deliver excellent user experiences.</p>
<img src="https://via.placeholder.com/600x300" alt="About Image">
</div>
</section>
<!-- Services Section -->
<section id="services" class="services">
<div class="container">
<h2>Our Services</h2>
<div class="service-card">
<h3>Web Design</h3>
<p>Creative and functional designs for your digital presence.</p>
</div>
<div class="service-card">
<h3>Development</h3>
<p>Modern, responsive, and high-performing websites.</p>
</div>
<div class="service-card">
<h3>Branding</h3>
<p>Building a strong, memorable brand for your business.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2024 EnhancedSite. All rights reserved.</p>
</div>
</footer>
</body>
</html>