-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (92 loc) · 3.84 KB
/
Copy pathindex.html
File metadata and controls
97 lines (92 loc) · 3.84 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
<!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 | Home Page</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 container">
<li><a class="active_ancher ancher" href="#top">HOME</a></li>
<li><a class="ancher" href="2-OurFamily.html">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>
<!-- Header -->
<header class="container_column top_page">
<div class="main_title">
<p class="f">THE INTAKE OF 44</p>
<p class="s">GEOGRAPHIC INFORMATION SYSTEM</p>
</div>
<div class="container_image">
<img class="image" src="imagse/bulding.png">
</div>
</header>
<!-- End of Page -->
<div class="end_page">
<div class="container_column" data-aos="fade-up" data-aos-duration="300">
<p class="welcom_text">Welcome to our family</p>
<div class="separator"></div>
<img class="arrow" src="imagse/up-arrow-5.png" alt="arrow">
</div>
<div class="about_us container">
<div class="paragraph_box" data-aos="fade-right" data-aos-duration="300">
<h1 class="title">THE PROJECT OF HTML & CSS WILL BE ABOUT OUR FAMILY ^_^</h1>
<p class="paragraph">
The purpose of this website is introducing ourselves
</p>
<a href="2-OurFamily.html" target="_self">
<button class="button" title="Our Story" type="button">
Our Family
</button>
</a>
</div>
<div class="photo_container" data-aos="fade-left" data-aos-duration="300">
<img class="photo" src="imagse/Photo.jpeg" alt="GIS_Family">
</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>