-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (120 loc) · 6.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="theme-color" content="#222">
<meta name="msapplication-navbutton-color" content="#222">
<meta name="apple-mobile-web-app-status-bar-style" content="#222">
<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>Ahmed Saber's Portfolio</title>
<link rel="icon" href="./images/myPic.jpg" type="image/x-icon">
<link rel="shortcut icon" type="image/ico" href="./images/myPic.jpg">
<link rel="fluid-icon" type="image/png" href="./images/myPic.jpg">
<meta name="description" content="An egyptian Native PHP Full Stack Web Developer who was born in 2001.">
<meta name="keywords" content="portfolio, Ahmed Saber, Full Stack Web Developer">
<meta name="author" content="Ahmed Saber, ahmed0saber33@gmail.com">
<meta name="og:title" content="Ahmed Saber's Portfolio">
<meta name="og:description" content="An egyptian Native PHP Full Stack Web Developer who was born in 2001.">
<meta name="og:image" content="./images/myPic.jpg">
<meta name="og:type" content="portfolio">
<meta name="og:email" content="ahmed0saber33@gmail.com">
<meta name="og:phone_number" content="+201208611892">
<meta name="og:country-name" content="Egypt">
<link type="text/css" rel="stylesheet" href="./css/style.css">
<link href='https://fonts.googleapis.com/css?family=Bree Serif' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<p>My Portfolio</p>
<nav>
<ul class="menu-list">
<li><a href="#home_container">Home</a></li>
<li><a href="#about_container">About</a></li>
<li><a href="#projects_container">Projects</a></li>
<li><a href="#contact_container">Contact</a></li>
<li><a onclick="changeTheme()">Change Theme</a></li>
</ul>
<button>
<i class="fa fa-times"></i>
<i class="fa fa-bars"></i>
</button>
</nav>
</header>
<main>
<section id="home_container">
<section id="home">
<section id="myImg">
<img src="./images/myPic.jpg">
</section>
<section id="myInfo">
<h1>Ahmed Saber</h1>
<p>Full Stack Web Developer</p>
<a href="https://github.com/ahmed0saber" target="_blank"><i class="fa fa-github icons"></i></a>
<a href="https://www.linkedin.com/in/ahmed0saber/" target="_blank"><i class="fa fa-linkedin icons"></i></a>
<a href="https://www.facebook.com/profile.php?id=100004875915808" target="_blank"><i class="fa fa-facebook icons"></i></a>
<a href="https://api.whatsapp.com/send?phone=+201208611892&text=Hi" target="_blank"><i class="fa fa-whatsapp icons"></i></a>
<a href="https://t.me/ahmed0saber" target="_blank"><i class="fa fa-telegram icons"></i></a>
</section>
</section>
</section>
<section id="about_container">
<section id="about">
<h1>About</h1>
<section id="grids">
<section id="in_row">
<section class="grid">
<h3>Birth :-</h3>
<p>Born in 2001.</p>
<p>at Desouk, Kafr El Sheikh, Egypt.</p>
</section>
<section class="grid">
<h3>Education :-</h3>
<p>Studies Bachelor of Applied Science at faculty of Science, Kafr El Sheikh university</p>
</section>
<section class="grid">
<h3>Contact Info :-</h3>
<p><span>Name:</span> Ahmed Saber Fathy</p>
<p><span>Birthday:</span> 5 july 2001</p>
<p><span>Address:</span> Desouk , Kafr El Sheikh , Egypt</p>
<p><span>Phone Number:</span> +20 120 861 1892</p>
<p><span>Gmail:</span> ahmed0saber33@gmail.com</p>
</section>
</section>
<section>
<h3>Who is me ?!</h3>
<p>I'm a Full Stack Web Developer, who has obtained experience working with HTML, CSS, JavaScript, jQuery, Bootstrap, VueJS, ElectronJS, PHP and SQL , familiar with hosting services such as GitHub, w3spaces, Heroku, 000webhost and infinityfree.</p>
<p>I prefer working in teams rather than sololy working even if I'm better alone as I can finish my work much more faster but I love supporting team mates, gathering together, solving our problems and challenging each other.</p>
<p>Scroll down to see my simple projects which you can preview.</p>
</section>
</section>
</section>
</section>
<section id="projects_container">
<section id="projects">
<h1>Projects</h1>
<section id="all_projects">
</section>
</section>
</section>
<section id="contact_container">
<section id="contact">
<section id="text">
<h1>Contact</h1>
<p>Your message will be sent via whatsapp.</p>
</section>
<section id="form">
<label for="name" id="name-label">Enter your name</label><br>
<input type="text" name="name" id="name" placeholder="Full name" autocomplete="off"><br>
<label id="feedback-label">Enter your message</label>
<textarea name="feedback" id="msg" placeholder="Message" autocomplete="off"></textarea><br>
<button id="submit" onclick="send()">Send</button>
</section>
</section>
</section>
</main>
</body>
<script type="text/javascript" src="./js/app.js"></script>
<script type="text/javascript" src="data.json"></script>
</html>