-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
156 lines (113 loc) · 4.74 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
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>University Website</title>
<link rel="stylesheet" href="style.css">
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<body>
<section class="about-header">
<nav>
<div class="logo">
<a href=""><img src="img/logo.png" alt=""></a>
</div>
<div class="nav-links" id="links">
<i class="fa fa-times" onclick="barHide()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="course.html">COURSES</a></li>
<li><a href="blog.html">BLOG</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" id="show" onclick="barShow()"></i>
</nav>
<div class="content-header">
<div class="main-title">
<h2>Contact Us</h2>
<div class="layer-color"></div>
</div>
</div>
</section>
<section class="location">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3456.15274734476!2d30.945784675058633!3d29.97503992185666!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145856fa27605d37%3A0x766a95dd7569ad65!2s6th%20of%20October%20University!5e0!3m2!1sen!2seg!4v1728763594573!5m2!1sen!2seg"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<section class="contact-us">
<div class="heading">
<h2>Contact
<span> Us </span>
</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
<br>incididunt ut labore et dolore magna aliqua.
</p>
</div>
<div class="row">
<div class="contact-content">
<div class="item-info">
<i class="fa-brands fa-fort-awesome"></i>
<span>
<h4>Address:</h4>
<p>First 6th of October,Giza Governorate</p>
</span>
</div>
<div class="item-info">
<i class="fa-solid fa-phone-volume"></i>
<span>
<h4>Phone:</h4>
<p>+20 01066398472</p>
</span>
</div>
<div class="item-info">
<i class="fa-regular fa-envelope"></i>
<span>
<h4>Email:</h4>
<p>[email protected]</p>
</span>
</div>
</div>
<div class="contact-message">
<div class="message-info">
<div class="info">
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
</div>
<input type="text" placeholder="Subject">
<textarea rows="5" placeholder="Your Message"></textarea>
<button type="submit">Send Now!</button>
</div>
</div>
</div>
</section>
<section class="footer">
<h2>About <span>Us</span></h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit nam culpa temporibus modi sapiente eos autem
eum voluptatibus beatae <br> necessitatibus dignissimos, ab qui mollitia illum ea incidunt inventore
repellendus
ullam!
</p>
<div class="icons">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-linkedin"></i>
</div>
<p>Made With <i class="fa-solid fa-heart-pulse"></i> By Hossam</p>
</section>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 600
});
</script>
<script src="main.js"></script>
</body>
</html>