generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
145 lines (130 loc) · 4.58 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- SITE TITLE -->
<title>Moe | Software Engineer</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./assets/images/logo.png" />
<meta name="description" content="Developer/Programmer portfolio">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Moe Al Ashtal">
<!-- STYLESHEET CSS FILES -->
<link rel="stylesheet" href="./assets/CSS/bootstrap.min.css" />
<link rel="stylesheet" href="./assets/CSS/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.0/animate.css"
integrity="sha512-VFXHmyaAM2CkNU+TogLhWl7rjTFcXo1YRsruJHHmsZasKSn6LlFivRJ6gVG4mlJtybmAkZL3z9sxqGo5aX0fIw=="
crossorigin="anonymous" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover-min.css"
type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.js" />
</head>
<body data-spy="scroll" data-target=".navbar-collapse" data-offset="50">
<!----Navigation Bar--->
<section class="navbar navbar-fixed-top custom-navbar" role="navigation">
<div class="container">
<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>
<a href="index.html" class="navbar-brand">
<span class="bold">
<img class="logo" src="assets/images/logo.png" alt="Moes Logo" />
</span>
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="about.html" class="smoothScroll">About me</a></li>
<li>
<a href="assets/cv/Minimalist Resume.pdf" target="_blank" class="smoothScroll">Download CV</a>
</li>
<li>
<a href="contact.html" class="smoothScroll">Say Hello :)</a>
</li>
</ul>
</div>
</div>
</section>
<!-- Home Section -->
<section id="home">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<img
style="
width: 25%;
margin: auto;
margin-top: 40px;
padding-top: 20px;
"
src="assets/images/my_pic.png"
alt="Developers picture"
/><br />
<h1 class="heading animated fadeInUp">Hi, I'm Moe</h1>
<h3><span class="bold">I'm a Software Engineer.</span></h3>
<hr />
<a href="#footer" class="smoothScroll btn btn-default">
<span style="font-size: 15px;" class="fa fa-arrow-down"> </span>
</a>
<!-- <script>
document.write("<h1>Hi</h1>");
</script> -->
</div>
</div>
</div>
</section>
<!-- footer section -->
<section id="copyright">
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<ul class="social-icon">
<li><a href="https://www.facebook.com/moe.ashtal" class="fa fa-facebook wow bounceIn"
data-wow-delay="0.3s" target="_parent"></a> </li>
<li><a href="#" class="fa fa-google-plus wow bounceIn" data-wow-delay="0.6s"></a></li>
<li><a href="https://www.linkedin.com/in/moeashtal/" class="fa fa-linkedin wow bounceIn"
data-wow-delay="0.9s"></a> </li>
</ul>
</div>
</div>
</div>
</footer>
<!-- copyright section -->
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-8 col-xs-9">
<p>Moe © 2020</p>
</div>
<div class="col-md-4 col-sm-4 col-xs-3">
<a href="#home" class="smoothScroll fa fa-angle-up"></a>
</div>
</div>
</div>
</section>
<!-- JAVASCRIPT JS FILES -->
<script src="assets/JS/jquery.js"></script>
<script src="assets/JS/bootstrap.min.js"></script>
<script src="assets/JS/smoothscroll.js"></script>
<script src="assets/JS/isotope.js"></script>
<script src="assets/JS/imagesloaded.min.js"></script>
<script src="assets/JS/nivo-lightbox.min.js"></script>
<script src="assets/JS/wow.min.js"></script>
<script src="assets/JS/custom.js"></script>
<script>
if (window.history.replaceState) {
window.history.replaceState(null, null, window.location.href);
}
</script>
</body>
</html>