-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (108 loc) · 4.71 KB
/
index.html
File metadata and controls
115 lines (108 loc) · 4.71 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
<!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="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media.css">
<title>Html Css project</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<h2>portfolio</h2>
</div>
<ul class="navlist">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Experiances</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Footer</a></li>
</ul>
<div class="btndiv">
<button class="menubtn">menu</button>
</div>
</nav>
<div class="home">
<div class="container">
<div class="content">
<div class="info">
<h4>Iam an English teacher & developer</h3>
<h1>Hamdy Hani Redwan</h1>
<h3>If you want to know about me, keep scrolling to find more info...</h3>
</div>
<div class="icons">
<ul>
<li><i class="fa-brands fa-facebook"></i></li>
<li><i class="fa-brands fa-square-instagram"></i></li>
<li><i class="fa-brands fa-twitter"></i></li>
<li><i class="fa-brands fa-square-github"></i></li>
<li><i class="fa-brands fa-square-whatsapp"></i></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- about section -->
<section class="about">
<div class="container">
<div class="aboutContent">
<h2 class="cardTitle">About me</h2>
<div class="card">
<img src="img/logo.jpg" alt="cardTitle">
<div class="details">
<h2>Name: Hamdy Hani Redwan</h2>
<p>Age: 25</p>
<p>University: Al-Azhar university</p>
<p>Education: English litreture</p>
<p>Experiances: after graduation I decided to learn programming, so I started to learn throught self-eduction the basic of Front-End from YouTupe, websites and other sources, then I reached a good level in Html,css,JavaScript and ReactJs, as I created differnt functional websites, so I want to join GSG to develop myself more and more by your experiances to be a better developer. </p>
</div>
</div>
</div>
</div>
</section>
<!-- contact section -->
<section class="contact">
<div class="container">
<h2>Contact with me</h2>
<div class="wholeContact">
<div class="leftForm">
<h3>Ask me or write your opinion here...</h3>
<textarea cols="60" rows="10"></textarea>
</div>
<div class="rightForm">
<h4>fill your info here</h4>
<div>
<input type="text" placeholder="write your full name">
<input type="email" placeholder="write your email">
</div>
<div>
<input type="password" placeholder="write your password">
<input type="password" placeholder="confirm your password">
</div>
<div>
<select>
<option selected disabled>choose your city</option>
<option>gaza</option>
<option>khanyounis</option>
<option>Rafah</option>
</select>
</div>
<div>
<button>send</button>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Perspiciatis eum tenetur aperiam cum</p>
</div>
</footer>
</body>
</html>