-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (124 loc) · 4.58 KB
/
Copy pathindex.html
File metadata and controls
132 lines (124 loc) · 4.58 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
<!-- Coded By Esam Jaafar -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ===== CSS ===== -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link
href="https://fonts.googleapis.com/css?family=Lato:400,100,300"
rel="stylesheet"
type="text/css" />
<link
href="https://fonts.googleapis.com/css?family=Raleway:100,400,700"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Oswald:200,400,700"
rel="stylesheet" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" />
<link
rel="stylesheet"
href="path/to/font-awesome/css/font-awesome.min.css" />
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<link
href="https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css"
rel="stylesheet" />
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="CSS/navbar.css" />
<link rel="stylesheet" href="CSS/style.css" />
<link rel="stylesheet" href="CSS/home.css" />
<link rel="stylesheet" href="CSS/profile.css" />
<link rel="stylesheet" href="CSS/contact.css" />
<link rel="stylesheet" href="CSS/footer.css" />
<!-- ===== ICONE SCRIPTS ===== -->
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
<script src="https://use.fontawesome.com/20ab91acc4.js"></script>
<title>Home Page</title>
</head>
<body>
<!--=============== NAVBAR ===============-->
<nav>
<div class="nav-bar">
<i class="bx bx-menu sidebarOpen"></i>
<!-- sidebar-menu logo open -->
<span class="logo navLogo"><a href="#home">JFR</a></span>
<div class="nav-menu">
<div class="navbar-logo-toggle">
<span class="logo"><a href="#">JFR</a></span>
<i class="bx bx-x siderbarClose"></i>
<!-- sidebar-menu logo close -->
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="about.html">Profile</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#footer">Social</a></li>
</ul>
</div>
<div class="buttons" id="resume">
<!-- Reume button -->
<a
href="https://drive.google.com/file/d/1wN0rdJv60AP6rFPLjXvgdGo0Yhzl_mbn/view?usp=drive_link"
target="_blank"
class="btn"
>Resume</a
>
</div>
</div>
</nav>
<!--=============== Body ===============-->
<div class="content">
<!-- =============== HOME SECTION ===============-->
<section class="main" id="home">
<div class="profile-card">
<div class="profile-image">
<img src="Images/Esam.png" alt="" class="profile-pic" />
</div>
<div class="personla-data">
<h2>Esam Jaafar</h2>
<span>Developer & Designer</span>
</div>
<div class="buttons">
<a href="#profile" class="btn">Get To Know Me</a>
</div>
</div>
</section>
<!--=============== FOOTER ===============-->
<footer class="footer" id="footer">
<div class="footer-content">
<div class="footer-row">
<div class="footer-col">
<h4>follow Me</h4>
<div class="footer-social-links">
<a href="https://github.com/jfr3sam" target="_blank"
><i class="fab fa-github"></i
></a>
<a href="https://twitter.com/home" target="_blank"
><i class="fab fa-twitter"></i
></a>
<a href="https://www.instagram.com/sa_v41/" target="_blank"
><i class="fab fa-instagram"></i
></a>
<a
href="https://www.linkedin.com/in/esam-jaafar-291aa3266/"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</div>
</div>
</footer>
</div>
<script src="Scripts/main.js"></script>
</body>
</html>