-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3-ContactUs.html
More file actions
116 lines (107 loc) · 5.16 KB
/
Copy path3-ContactUs.html
File metadata and controls
116 lines (107 loc) · 5.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="auther" content="Radwa_Bahaa">
<meta name="description" content="The Final project of the front end course (HTML & CSS)">
<link rel="stylesheet" href="style/StyleSheet.css">
<link rel="icon" href="imagse/iti-logo-wight.png" style="width: 10px;">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<title>GIS 44 | Contact Us</title>
</head>
<body id="top" class="body">
<!-- Navigation Bar -->
<div class="container nav">
<div class="logo">
<a class="container ancher" href="https://iti.gov.eg/" target="_blank">
<img class="logo_picture" src="imagse/iti-logo-black.png" alt="ITI_Logo">
<div class="logo_separator"></div>
<span class="logo_name">INFORMATION TECHNOLOGY INSTITUTE</span>
</a>
</div>
<nav class="nav_bar">
<ul class="nav_list">
<li><a class="ancher" href="index.html">HOME</a></li>
<li><a class="ancher" href="2-OurFamily.html">OUR FAMILY</a></li>
<li><a class="active_ancher ancher" href="#top">CONTACT US</a></li>
</ul>
<a class="ancher" href="4-JoinUs.html">
<button class="button">
JOIN US
</button>
</a>
</nav>
</div>
<!-- Tha Gap -->
<div class="empty_box"></div>
<!-- Main Title -->
<header class="header">
<p class="s">GEOGRAPHIC INFORMATION SYSTEM</p>
<p class="f">Intake 44</p>
</header>
<!-- Title -->
<div class="container_column">
<h1 class="title">Contact Us</h1>
<h4 class="note">Do you need to talk to us, have a question, or over just want to tell us anything
<br>
Find all the information you need here, or over send us a massege
</h4>
<div class="separator"></div>
</div>
<!-- Contact Us -->
<div class="container_column contact">
<div class="grid1">
<form class="container_column2 form" action="mailto:radwabahaaeldeen@gmail.com" method="post" target="_blank">
<div class="cell3">
<p class="label3">Send Us</p>
<div class="grid2">
<label class="label">Full Name</label>
<input class="input" type="text" name="Name" required placeholder="Your Name" required minlength="5">
<label class="label">Email</label>
<input class="input" type="text" name="Email" required placeholder="someone@example.com" required>
<label class="label">Subject</label>
<textarea class="textarea" name="Subject" required placeholder="Enter your comment here"></textarea>
</div>
</div>
<div class="container buttons">
<button class="button2" type="submit">Submit</button>
<button class="button2" type="reset">Reset</button>
</div>
</form>
<div class="container_column2 box form">
<p class="label3">General Info</p>
<div class="container_column">
<label class="label">Smart Villages Company, by Cairo / Alexandria Desert, B148 KM 28, Al Giza Desert, Giza Governorate 12563</label>
<label class="label">ITIinfo@iti.gov.eg</label>
<label class="label">02 35355656</label>
</div>
</div>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d883917.6312542695!2d29.86753463745117!3d30.071173775590744!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14585b979b7d1dd9%3A0x88f29d027c44f959!2sInformation%20Technology%20Institute!5e0!3m2!1sen!2seg!4v1702684264706!5m2!1sen!2seg" width="95%" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<!-- Tha Gap -->
<div class="empty_box"></div>
<!-- Footer -->
<footer class="container footer">
<div class="logo">
<a class="container ancher" href="https://iti.gov.eg/" target="_blank">
<img class="logo_picture" src="imagse/iti-logo-black.png" alt="ITI_Logo">
</a>
</div>
<div class="logo_separator"></div>
<div class="container links">
<snap class="snap">© Copyright 2023 | Produced By Radwa Bahaa</snap>
<a class="ancher" href="#top" title="To the top">
<button class="button" type="button">
<img class="image_top" src="imagse/up-arrow-5.png" alt="Top Page">
</button>
</a>
</div>
</footer>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>