-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
123 lines (108 loc) · 4.85 KB
/
about.html
File metadata and controls
123 lines (108 loc) · 4.85 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<title>About Creative Solutions</title>
</head>
<body>
<header class="header">
<div class="container header-flex">
<div class="logo-text">CS</div>
<nav>
<input type="checkbox" id="menu-toggle" class="menu-toggle">
<label for="menu-toggle" class="menu-icon"><i class="fas fa-bars"></i></label>
<ul class="main-menu">
<li><a href="/">Home</a></li>
<li><a class="current" href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container container-sm">
<h2>
<span class="text-primary">Creative</span> Solutions
Where AI Art Meets Creative <span class="text-primary">Inspiration</span>
</h2>
</div>
</section>
<section class="services bg-dark">
<div class="container">
<h2 class="section-heading">Our Services</h2>
<div class="services-flex">
<div class="service">
<i class="fas fa-paint-brush"></i>
<h3>Graphic Design</h3>
<p>Transforming ideas into visually stunning graphics that capture your
brand's essence and engage your audience.</p>
</div>
<div class="service">
<i class="fas fa-robot"></i>
<h3>AI Image Generation</h3>
<p>Leveraging advanced AI algorithms to create unique, high-quality images
tailored to your creative projects.</p>
</div>
<div class="service">
<i class="fas fa-laptop-code"></i>
<h3>Web Design</h3>
<p>Crafting intuitive and responsive web designs that provide an engaging
user experience across all devices.</p>
</div>
</div>
</div>
</section>
<section class="team">
<div class="container container-lg">
<h2 class="section-heading">Meet Our Team</h2>
<div class="team-flex">
<div class="team-member">
<img src="images/team-member-graphic-designer.webp" alt="team member 1">
<h3>John Doe</h3>
<p>Graphic Designer</p>
</div>
<div class="team-member">
<img src="images/team-member-ai.webp" alt="team member 2">
<h3>Jane Smith</h3>
<p>AI Specialist</p>
</div>
<div class="team-member">
<img src="images/team-member-web-developer.webp" alt="team member 3">
<h3>Mike Johnson</h3>
<p>Web Developer</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container footer-flex">
<div class="logo-text">CS</div>
<div>
<h4>Contact Us</h4>
<ul>
<li>(555) 555-5555</li>
<li>creative-solutions@email.com</li>
<li>302 Main St. Louisville, Ky</li>
</ul>
</div>
<div>
<h4>Connect With Us</h4>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</footer>
</body>
</html>