-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
147 lines (144 loc) · 5.86 KB
/
contact.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- Custom CSS Styles -->
<link rel="stylesheet" href="./styles/utilities.css">
<link rel="stylesheet" href="./styles/style.css">
<title>Artifical Intelligence Website Contact Page</title>
</head>
<body>
<!-- Navigation-bar Section -->
<header class="nav-bar">
<div class="container">
<div class="nav-container">
<div class="logo">
<a href="index.html">
<img src="./images/logo.png" alt="logo of company">
</a>
</div>
<nav class="nav-menu" id="navigation-menu">
<ul id="active-container">
<li><a href="index.html">home</a></li>
<li><a href="pricing.html">pricing</a></li>
<li><a href="about.html">about</a></li>
<li><a href="faq.html">faq</a></li>
<li><a href="contact.html" class="active">contact</a></li>
</ul>
<div class="user-btn">
<button class="btn-ts btn-sign-in">sign in</button>
<button class="btn btn-sign-up">sign up</button>
</div>
</nav>
<div class="burger-btn" id="toggle-btn">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</div>
</header>
<!-- Contact Hero Section -->
<section class="invest">
<div class="container">
<div class="invest-container">
<div class="invest-content">
<h2>Contact with us to get our <span>business services</span></h2>
<p>We are committed to processing the information in order to contact you and talk about your
project. We are committed to processing the information.</p>
</div>
<div class="invest-img">
<img src="./images/contact.png" alt="invest image">
</div>
</div>
</div>
</section>
<!-- Contact Form Section -->
<section class="contact">
<div class="container">
<h2>Send us Your <span>Message</span></h2>
<div class="contact-container">
<form action="">
<div class="name-container">
<div class="input-container">
<p>First Name</p>
<input type="text" name="first-name" required>
</div>
<div class="input-container">
<p>Last Name</p>
<input type="text" name="first-name" required>
</div>
</div>
<div class="input-container">
<p>Email</p>
<input type="email" name="email" required>
</div>
<div class="input-container">
<p>Your Message</p>
<input type="text" name="message" required>
</div>
<div class="input-container">
<p>Additional Details</p>
<textarea name="details" cols="30" rows="10" required></textarea>
</div>
<input type="submit" value="Send Message" class="btn btn-submit">
</form>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<div class="footer-title-container">
<h4><span>ARShakir</span></h4>
<div class="social-links">
<a href=""><i class="fab fa-google"></i></a>
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook"></i></a>
</div>
</div>
<div class="footer-nav-container">
<div class="nav-section">
<h6>First</h6>
<a href="">First page</a>
<a href="">Second page</a>
<a href="">Third page</a>
<a href="">Fourth page</a>
</div>
<div class="nav-section">
<h6>Second</h6>
<a href="">First page</a>
<a href="">Second page</a>
<a href="">Third page</a>
<a href="">Fourth page</a>
</div>
<div class="nav-section">
<h6>Third</h6>
<a href="">First page</a>
<a href="">Second page</a>
<a href="">Third page</a>
<a href="">Fourth page</a>
</div>
<div class="nav-section">
<h6>Fourth</h6>
<a href="">First page</a>
<a href="">Second page</a>
<a href="">Third page</a>
<a href="">Fourth page</a>
</div>
</div>
<div class="copy-section">
<p>© Copyrights 2021</p>
<a href="">Privacy Policy</a>
<a href="">Terms & Services</a>
</div>
</div>
</footer>
<!-- JavaScripts -->
<script src="./js/app.js"></script>
</body>
</html>