-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
99 lines (87 loc) · 3.26 KB
/
Copy pathIndex.html
File metadata and controls
99 lines (87 loc) · 3.26 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
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Photography Portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- NAVBAR -->
<header>
<h1 class="logo">Your Studio Name</h1>
<nav>
<a href="#work">Work</a>
<a href="#team">Team</a>
<a href="#contact">Book Now</a>
</nav>
</header>
<!-- HERO SECTION -->
<section class="hero">
<h2>Capture Your Moments With Us</h2>
<p>Professional photography for weddings, events, portraits & more.</p>
<a href="#contact" class="btn">Book a Session</a>
</section>
<!-- OUR WORK -->
<section id="work" class="work">
<h2>Our Work</h2>
<div class="gallery">
<!-- Replace these sample images -->
<img src="https://picsum.photos/400?random=1" alt="Sample Work" />
<img src="https://picsum.photos/400?random=2" alt="Sample Work" />
<img src="https://picsum.photos/400?random=3" alt="Sample Work" />
<img src="https://picsum.photos/400?random=4" alt="Sample Work" />
<img src="https://picsum.photos/400?random=5" alt="Sample Work" />
<img src="https://picsum.photos/400?random=6" alt="Sample Work" />
</div>
</section>
<!-- TEAM SECTION -->
<section id="team" class="team">
<h2>Meet Our Team</h2>
<div class="team-cards">
<!-- TEAM MEMBER 1 -->
<div class="card">
<img src="https://picsum.photos/300?random=10" alt="Team member" />
<h3>Person One</h3>
<p>Lead Photographer</p>
<p>Expert in weddings, portraits & creative shoots.</p>
</div>
<!-- TEAM MEMBER 2 -->
<div class="card">
<img src="https://picsum.photos/300?random=11" alt="Team member" />
<h3>Person Two</h3>
<p>Videographer</p>
<p>Specialist in cinematic storytelling.</p>
</div>
<!-- TEAM MEMBER 3 -->
<div class="card">
<img src="https://picsum.photos/300?random=12" alt="Team member" />
<h3>Person Three</h3>
<p>Editor</p>
<p>Brings your memories to life with stunning edits.</p>
</div>
</div>
</section>
<!-- CONTACT / BOOKING -->
<section id="contact" class="contact">
<h2>Book Your Shoot</h2>
<p>Contact us anytime to plan your perfect photoshoot.</p>
<div class="contact-links">
<!-- CHANGE THESE URLS -->
<a href="https://wa.me/1234567890" target="_blank" class="btn whatsapp">
WhatsApp
</a>
<a href="https://instagram.com/yourprofile" target="_blank" class="btn instagram">
Instagram
</a>
<a href="https://youtube.com/yourchannel" target="_blank" class="btn youtube">
YouTube
</a>
</div>
</section>
<footer>
<p>© 2025 Your Photography Studio. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>