forked from muqadsaqudoos/Creative-Minds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (112 loc) · 4.52 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
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
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Minds | Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap">
</head>
<body>
<!-- Header Section -->
<header role="banner">
<div class="container">
<h1>Creative Minds</h1>
<nav role="navigation">
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero" role="banner">
<div class="hero-content">
<h2>Design that Inspires Creativity</h2>
<p>We are a creative design agency focused on delivering innovative solutions for your business.</p>
<a href="#portfolio" class="btn">View Our Work</a>
</div>
</section>
<!-- Services Section -->
<section id="services" role="region" aria-labelledby="services-heading">
<div class="container">
<h2 id="services-heading">Our Services</h2>
<div class="services-grid">
<div class="service">
<h3>Web Design</h3>
<p>Crafting visually appealing and user-friendly websites tailored to your brand.</p>
</div>
<div class="service">
<h3>Graphic Design</h3>
<p>Creating stunning visuals and branding assets that captivate your audience.</p>
</div>
<div class="service">
<h3>UI/UX Design</h3>
<p>Designing intuitive and engaging user experiences to enhance customer interaction.</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" role="region" aria-labelledby="portfolio-heading">
<div class="container">
<h2 id="portfolio-heading">Our Work</h2>
<div class="portfolio-grid">
<div class="portfolio-item">
<img src="ui.jpg" alt="Project One - UI/UX Design">
<h3>Project One</h3>
</div>
<div class="portfolio-item">
<img src="graphicdesign.png" alt="Project Two - Graphic Design">
<h3>Project Two</h3>
</div>
<div class="portfolio-item">
<img src="web.png" alt="Project Three - Web Design">
<h3>Project Three</h3>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" role="region" aria-labelledby="team-heading">
<div class="container">
<h2 id="team-heading">Meet the Team</h2>
<div class="team-grid">
<div class="team-member">
<img src="pic1.jpg" alt="Muqadsa Qudoos - UI/UX Designer">
<h3>Muqadsa Qudoos</h3>
<p>UI/UX Designer</p>
</div>
<div class="team-member">
<img src="pic2.jpg" alt="Rabbiya Bukhari - Web Designer">
<h3>Rabbiya Bukhari</h3>
<p>Web Designer</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" role="region" aria-labelledby="contact-heading">
<div class="container">
<h2 id="contact-heading">Contact Us</h2>
<form id="contact-form" action="#">
<label for="name">Your Name</label>
<input type="text" name="name" id="name" placeholder="Your Name" required>
<label for="email">Your Email</label>
<input type="email" name="email" id="email" placeholder="Your Email" required>
<label for="message">Your Message</label>
<textarea name="message" id="message" placeholder="Your Message" required></textarea>
<button type="submit" style="margin-bottom: 20px;">Send Message</button>
</
<!-- Footer Section -->
<footer role="contentinfo">
<div class="container">
<p>© 2024 Creative Minds. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>