-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava-script.html
More file actions
168 lines (141 loc) · 6.26 KB
/
java-script.html
File metadata and controls
168 lines (141 loc) · 6.26 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
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
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<title>Java Script</title>
<!-- Meta files -->
<meta charset="UTF-8">
<!-- As this answer is now 10+ years old my recommendation would be to leave this tag out altogether,
unless you must support old legacy browsers. -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Khaled Zeid">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<!-- MAIN CSS -->
<link rel="stylesheet" href="css/tooplate-style.css">
<!-- Menu CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.main.css">
<!-- Weather CSS -->
<link rel="stylesheet" href="css/js.css" </head>
<body>
<!-- PRE LOADER -->
<div class="preloader">
<div class="spinner">
<span class="sk-inner-circle"></span>
</div>
</div>
<!-- MENU -->
<div class="navbar custom-navbar navbar-fixed-top" role="navigation">
<div class="container">
<!-- NAVBAR HEADER -->
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<!-- lOGO -->
<a href="index.html" class="navbar-brand">Khaled Zeid</a>
</div>
<!-- MENU LINKS -->
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home" class="smoothScroll">Home</a></li>
<li><a href="#about" class="smoothScroll">Studio</a></li>
<li><a href="#project" class="smoothScroll">Project</a></li>
<li><a href="web-developer.html" class="smoothScroll">Web Developer</a></li>
<li><a style="color: #ffeb00;" href="java-script.html" class="smoothScroll">Java Script</a>
<!--<div class="sub-menu-1">
<ul>
<li><a href="#about" class="smoothScroll">Notes</a></li>
</ul>
</div>-->
</li>
<li><a href="#team" class="smoothScroll">About Us</a></li>
<li><a href="#contact" class="smoothScroll">Let's talk</a></li>
</ul>
</div>
</div>
</div>
<!-- HOME -->
<section id="home" class="parallax-section">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-12">
<div class="home-text">
<h1>Java Script project</h1>
<p>We have a lot of mobile projects for Android systems.</p>
<ul class="section-btn">
<a href="#about" class="smoothScroll"><span data-hover="Discover More">Discover
More</span></a>
</ul>
</div>
</div>
</div>
</div>
<!-- Video -->
<video controls autoplay loop muted>
<source src="videos/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>
<!-- ABOUT -->
<section id="about" class="parallax-section">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-10 col-sm-12">
<div class="about-info">
<h3>Introducing (Khaled Zeid) Website</h3>
<h1>This site is designed for you. Here you will find a lot of open source applications.
The site is always updated to ensure better service and there is also an update of
all codes. We also provide online lessons and available learning materials.</h1>
</div>
</div>
</div>
</div>
</section>
<!-- Project -->
<section id="project" class="parallax-section">
<div class="container">
<div class="row">
<div class="about-info" style="background: linear-gradient(300deg, #ffffff, #ffffff);
font-family: Poppins, sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;">
<form id="form">
<input type="text" id="search" placeholder="Search by location..." autocomplete="off" />
</form><br><br>
<main id="main"></main>
</div>
</div>
</div>
</section>
<!-- Source -->
<section id="contact" class="parallax-section">
<div class="container">
<div class="row">
<a style="color: #ffffff; align-content: center;">Hello, eveyone!</a>
</div>
</div>
</section>
<!-- SCRIPTS -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.parallax.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/magnific-popup-options.js"></script>
<script src="js/modernizr.custom.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/custom.js"></script>
<script src="js/js.js"></script>
</body>
</html>