-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (124 loc) · 4.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/9650a62e47.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="./css/index.css">
<title>Personal Portfolio Webpage</title>
</head>
<body>
<header id="about">
<nav id="navbar">
<ul >
<li><a href="#about">About</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div id="welcome-section" class="container">
<h1 id="title">I am Ibraheem Areeda</h1>
<p class="lead"><em>a full-stack web developer</em></p>
</div>
</header>
<span id="work"><section id="projects"></span>
<div class="project-tile">
<h1 id="caption">"These are some of my projects"</h1><br>
<div id="bottom-line"></div>
<div class="projects">
<div class="box">
<a target="_blank" href="https://ibraheem-areeda.github.io/Tribute-Page/">
<img src="./assets/Tribute-Page.png" alt="project-img" class="project-img">
<p>
<span class="code"><</span>
Tribute Page
<span class="code">/></span>
</p>
</a>
</div>
<div class="box">
<a target="_blank" href="https://main--wondrous-sundae-17ea9a.netlify.app/" alt="project-img" class="project-img">
<img src="./assets/netflex clone.png" alt="project-img" class="project-img">
<p>
<span class="code"><</span>
Movies Library
<span class="code">/></span>
</p>
</a>
</div>
<div class="box">
<a target="_blank" href="https://ibraheem-areeda.github.io/Technical-Documentation-Page/">
<img src="./assets/Technical-Documentation-Page.png" alt="project-img" class="project-img">
<p>
<span class="code"><</span>
Documentation Page
<span class="code">/></span>
</p>
</a>
</div>
<div target="_blank" class="box">
<a href="https://ibraheem-areeda.github.io/Product-Landing-Page/">
<img src="./assets/Product-Landing-Page.png" alt="project-img" class="project-img">
<p>
<span class="code"><</span>
Landing Page
<span class="code">/></span>
</p>
</a>
</div>
<div target="_blank" class="box">
<a href="https://ibraheem-areeda.github.io/todo-project/index.html">
<img src="./assets/todo-project.png" alt="project-img" class="project-img">
<p>
<span class="code"><</span>
Todo List
<span class="code">/></span>
</p>
</a>
</div>
<div target="_blank" class="box">
<a href="https://stirring-brigadeiros-7b0f19.netlify.app/">
<img src="./assets/travel.png" alt="project-img" class="project-img">
<p>
<span class="code"><</span>
Travel Destination
<span class="code">/></span>
</p>
</a>
</div>
</div>
<a href="https://github.com/ibraheem-areeda?tab=repositories" class="btn">Show More</a>
</div>
</section>
<section id="contact">
<div class="container">
<h1>Let's work together...</h1>
<p>Need help with your project? Just ask!</p>
<div class="social">
<div>
<a href="/">
<i class="fab fa-facebook fa-1x"></i>
Facebook
</a>
<a id="profile-link" target="_blank" href="https://github.com/ibraheem-areeda">
<i class="fab fa-github fa-1x"></i>
Github
</a>
<a href="/">
<i class="fab fa-twitter fa-1x"></i>
Twitter
</a>
<a href="#">
<i class="fas fa-envelope-open-text fa-1x"></i>
Mail
</a>
<a href="#">
<i class="fas fa-phone fa-1x"></i>
Call Me
</a>
</div>
</div>
</div>
</section>
</body>
</html>