-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (72 loc) · 3.24 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
<!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">
<link rel="shortcut icon" type="image/jpg" href="img/fav-edit.jpg"/>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap" rel="stylesheet">
<!-- font awesome -->
<script src="https://kit.fontawesome.com/9d42f08c1f.js" crossorigin="anonymous"></script>
<title>HERO Org.</title>
</head>
<body>
<header class="header">
<img id="logo" src="img/hero-high-resolution-color-logo.jpg" alt="Logo">
<div class="Navbar__Link-toggle">
<i class="fa-solid fa-bars"></i>
</div>
<nav class="nav">
<ul>
<li class="nav-toggle"><a href="#">Home</a></li>
<li class="nav-toggle"><a href="#">About</a></li>
<li class="nav-toggle"><a href="#">Projects</a></li>
<li class="nav-toggle"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div class="container">
<p class="org">Welcome To HERO Org.</p>
<section class="about-me">
<div class="about-me-left">
<h3>HI THERE! <br> I'M <span id="my-name">Abdelrahman Yousef</span> </h3>
<p>I 'm a Junior Frontend web Developer <br>
I have the skills of HTML, CSS and agood knowledge of Bootstrap
</p>
<div class="social-icons">
<a href=""><i class="fa-brands fa-github"></i></a>
<a href=""><i class="fa-brands fa-linkedin"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
<a href=""><i class="fa-brands fa-stack-overflow"></i></a>
</div>
</div>
<div class="about-me-right">
<img src="img/gallery/profile1.png" alt="">
</div>
</section>
<h1 class="org">Projects</h1>
<section class="projects">
<div class="card">
<img src="img/adidas.png" alt="">
<h3>Adidas</h3>
<p>Adida fits all your needs in one shoes. We care about our cutomer cause they are part of our community.</p>
</div>
<div class="card">
<img src="img/sales-force.png" alt="">
<h3>Sales force</h3>
<p>Salesforce, Inc. is an American cloud-based software company. It provides customer app focused on sales. </p>
</div>
<div class="card">
<img src="img/iphone.png" alt="">
<h3>Iphone</h3>
<p>Explore iPhone,the world's most powerful personal device. Another meaning of security all over the world.</p>
</div>
</section>
</div>
<script src="main.js"></script>
</body>
</html>