-
Notifications
You must be signed in to change notification settings - Fork 0
/
web project.html
172 lines (156 loc) · 5.17 KB
/
web project.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!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">
<link rel="stylesheet" href="style.css">
<title>My Home</title>
</head>
<body>
<header class="header" >
<a href="#MY Home" class="logo">MY Hoom</a>
<nav>
<a href="#home" class="H">Home</a>
<a href="#Products" class="P">Products</a>
<a href="#AboutUs" class="A">About Us</a>
<a href="#contact" class="C">Contact</a>
</nav>
</header>
<section id="home" class="main" >
<diV>
<h2 id>Your Home <br>
<span>In Your Hand.</span></h2>
</diV>
</section>
<section class="cards" id="Products">
<h2 class="title">
Products
</h2>
<div class="content">
<div class="card">
<div class="icon">
<i class="fa-solid fa-screwdriver-wrench"></i>
</div>
<div class="info">
<h3>
Carpentry Tools
</h3>
<a href="Carpentry Tools.html" target="_self" class="button">view cotent</a>
</div>
</div>
<div class="card">
<div class="icon">
<i class="fa-solid fa-lightbulb"></i>
</div>
<div class="info">
<h3>
Electricity Tools
</h3>
<a href="Electricity Tools.html" class="button">view cotent</a>
</div>
</div>
<div class="card">
<div class="icon">
<i class="fa-solid fa-bath"></i>
</div>
<div class="info">
<h3>
Bath Room Tools
</h3>
<a href="Bath Room Tools.html" class="button">view cotent</a>
</div>
</div>
</section>
<br>
<br>
<br>
<section class="cards contact" id="contact">
<h2 class="title"> Contact With Us</h2>
<div class="content">
<div class="card">
<div class="icon">
<i class="fa-solid fa-envelope"></i>
</div>
<div class="info">
<h3>
Email
</h3>
<p>[email protected]</p>
<p>[email protected]</p>
</div>
</div>
<div class="card">
<div class="icon">
<i class="fa-solid fa-phone-volume"></i>
</div>
<div class="info">
<h3>
phone
</h3>
<p>+01126007004</p>
<p>+01016625368</p>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
</section>
<section class="cards" id="AboutUs">
<h2 class="title" >
ABOUT US
</h2>
<br>
<br>
<div class="content">
<div class="card">
<img src="photosfor/IMG_20220822_215522_064.jpg" width="100%">
<div class="info">
<h3>
ENG/ Amr Elbakary
</h3>
<h5>
<p>
Computer Science Student<br>
Student at Mansoura Universty<br>
Front End Web Devoloper<br>
<h4>Skills:</h4>
Html&Css<br>
C#&Python
</p>
</h5>
</div>
</div>
<div class="card">
<img src="photosfor/omar.jpg" width="100%" height="70%">
<div class="info">
<h3>
ENG/ Omar Mohamed
</h3>
<h5>
<p>
Computer Science Student<br>
Student at Mansoura Universty<br>
Front End Web Develorper<br>
<h4>Skills:</h4>
Html&Css<br>
C#&Python
</p>
</h5>
</div>
</div>
</div>
</section>
<br>
<br>
<br>
<footer class="footer">
<p class="footer-title">
copyrights @ <span>amr elbakary_&_omar mohamed</span>
</p>
</footer>
</body>
</html>