-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (94 loc) · 3.94 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
<!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">
<title>Saif Portfolio</title>
<!-- font awesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<!-- google font -->
<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=Cairo:wght@400;600;700&display=swap" rel="stylesheet">
<!-- css file -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<p>SaifHayek</p>
</div>
<nav>
<i class="fas fa-bars nav-icon"></i>
<ul class="nav-list">
<li><a href="#aboutMe">About Me</a></li>
<li><a href="#mySkills">My Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="about-me" id="aboutMe">
<div class="container left-to-right-effect">
<h3><i class="fas fa-hand-point-right"></i> About me</h3>
<p>
Hi , I am Saif Al Din Al Hayek , I am 20 years old , I study software engineering at Al Azhar University. <br>
I am a beginner at programming , and here you will see my progress and my skills.<br>
Thank you . I hope you are always well.
</p>
</div>
</section>
<section class="my-skills" id="mySkills">
<div class="container">
<h2>My Skills</h2>
<div class="all-cards">
<div class="card ttb-effect">
<i class="fas fa-magic icon"></i>
<h3 class="card-title">Websites</h3>
<p class="cart-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Magnam, dolorum? Aliquid cum nulla, esse</p>
<a href="#">Read More</a>
</div>
<div class="card ttb-effect">
<i class="fas fa-magic icon"></i>
<h3 class="card-title">Android apps</h3>
<p class="cart-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Magnam, dolorum? Aliquid cum nulla, esse</p>
<a href="#">Read More</a>
</div>
<div class="card ttb-effect">
<i class="fas fa-magic icon"></i>
<h3 class="card-title">Java script</h3>
<p class="cart-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Magnam, dolorum? Aliquid cum nulla, esse</p>
<a href="#">Read More</a>
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<div class="container">
<h2>Get in touch</h2>
<div class="contact-details">
<div class="tool">
<i class="fas fa-phone-alt"></i>
<h3>Phone</h3>
<p>059458544</p>
</div>
<div class="tool">
<i class="fas fa-at"></i>
<h3>Email</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="tool">
<i class="fab fa-facebook"></i>
<h3>FaceBook</h3>
<p>seefhayek</p>
</div>
</div>
</div>
</section>
<footer>
copyright © by SaifHayek
</footer>
</body>
</html>