-
Notifications
You must be signed in to change notification settings - Fork 0
/
2-OurFamily.html
133 lines (126 loc) · 6.08 KB
/
2-OurFamily.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
<!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">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<title>GIS 44 | Our Family</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="active_ancher ancher" href="#top">OUR FAMILY</a></li>
<li><a class="ancher" href="3-ContactUs.html">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>
<!-- Cardes -->
<div class="container_column">
<h1 class="title">The main members of our family</h1>
<h4 class="note">Click on each card to go to the linkedin account</h4>
<div class="separator"></div>
<div class="grid" data-aos="fade-up" data-aos-duration="200">
<div class="container_column cell">
<a class="ancher" href="https://linkedin.com/in/airashad" target="_blank">
<img class="image" src="imagse/Eng_Rashad.jpg" alt="Eng.Ahmed Rashad">
<h2 class="name">Eng.Ahmed Rashad</h2>
<h4 class="position">GIS Department Manager</h4>
<p class="about">
Community Analyst, Technology advocate, GIS Consultant, Manager and Traffic expert.
Interested in Smart Cities using integration between Technologies
</p>
</a>
</div>
<div class="container_column cell">
<a class="ancher" href="https://linkedin.com/in/fares-elesawy-gis" target="_blank">
<img class="image" src="imagse/Eng_Fares.jpg" alt="Eng.Fares Eleissawy">
<h2 class="name">Eng.Fares Eleissawy</h2>
<h4 class="position">Teaching Assistant</h4>
<p class="about">
Harnessed my previous experience in GIS with extra knowledge in the development field by joining the geoinformatics
track in ITI.
</p>
</a>
</div>
<div class="container_column cell">
<a class="ancher" href="https://linkedin.com/in/amruemad" target="_blank">
<img class="image" src="imagse/Eng_Amr.png" alt="Eng.Amr Elmahdi">
<h2 class="name">Eng.Amr Elmahdi</h2>
<h4 class="position">The Head of Team</h4>
<p class="about">
Worked as a site engineer in a piling and contracting company as an intern for three
months in expansion of ring road then worked as a site engineer.
</p>
</a>
</div>
<div class="container_column cell1" data-aos="fade-up" data-aos-duration="200">
<div >
<h1 class="title1">And about me...</h1>
<div class="separator"></div>
</div>
<div class="cell2">
<a class="container ancher" href="https://linkedin.com/in/radwabahaa" target="_blank">
<img class="image" src="imagse/Eng_Radwa.jpg" alt="Eng.Radwa Bahaa Eldeen">
<div class="paragraph">
<h2 class="name">Eng.Radwa Bahaa Eldeen</h2>
<h4 class="position">The website Designer</h4>
<p class="about">
Determined GIS analyst with over three years working on digital mapping. Skilled in creating
GIS databases, presenting findings in reports and using mapping software. Critical thinker,
constantly looking for ways to improve processes and build businesses.
</p>
</div>
</a>
</div>
</div>
</div>
</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>