-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
108 lines (94 loc) · 4.49 KB
/
contact.html
File metadata and controls
108 lines (94 loc) · 4.49 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
<!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>Contact 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 href="about.html">About</a></li>
<li><a class="current" href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero bg-dark">
<div class="container container-sm">
<h2>
<span class="text-primary">Empowering</span> Creativity Through AI: Discover Our
<span class="text-primary">Journey</span>
</h2>
</div>
</section>
<section class="contact">
<div class="container container-sm">
<h2 class="section-heading">Contact Us
<h2 />
<p>Reach out to us for collaboration, inquiries, or to learn more about how our
AI-powered art solutions can elevate your next project.</p>
<form action="" name="contact" netlify>
<div class="form-group">
<label for="first-name" class="visually-hidden">First Name</label>
<input type="text" id="first-name" name="first-name"
placeholder="Enter First Name" />
</div>
<div class="form-group">
<label for="last-name" class="visually-hidden">First Name</label>
<input type="text" id="last-name" name="last-name"
placeholder="Enter Last Name" />
</div>
<div class="form-group">
<label for="email" class="visually-hidden">Email Address</label>
<input type="email" id="email" name="email"
placeholder="Email Address" />
</div>
<div class="form-group">
<label for="message" class="visually-hidden">Message</label>
<textarea id="message" name="message"
placeholder="Enter Message"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Send Message</button>
</div>
</form>
</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>