-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (70 loc) · 2.35 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio site</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/font-awesome.css">
</head>
<body>
<header class="main-header">
<div class="logo">
<img src="img/code_100px.png" alt="logo" />
</div>
<div class="name-job">
<h1>muataz mahmoud</h1>
<h3>front-end ninja</h3>
</div>
</header>
<main>
<img src="img/html.jpg" alt="html script picture" />
</main>
<h1 class="featured-work">featured work</h1>
<!-- TODO: adding the real sorces of the real projects -->
<section class="footer parent">
<article class="project">
<figure>
<img src="img/strawberry.jpeg" alt="starwberry project">
<figcaption class="caption">strawberry</figcaption>
</figure>
<a href="https://www.github.com/myprojects/strawberry" target="_blank">
<p class="source">project link</p>
</a>
</article>
<article class="project">
<figure>
<img src="img/doctor_phone.jpeg" alt="doctor phone project">
<figcaption class="caption">Dr.phone</figcaption>
</figure>
<a href="https://www.github.com/myprojects/doctorphone" target="_blank">
<p class="source">project link</p>
</a>
</article>
<article class="project">
<figure>
<img src="img/VR2.jpeg" alt="VR project">
<figcaption class="caption">VR</figcaption>
</figure>
<a href="https://www.github.com/myprojects/vr" target="_blank">
<p class="source">project link</p>
</a>
</article>
</section>
<section class="contact-me">
<p class="contact-me">contact me </p>
<a href="https://github.com/mezo77" target="_blank">
<i class="fa fa-github-alt fa-2x" aria-hidden="true"></i>
</a>
<a href="https://www.facebook.com/muataz.mahmoud77" target="_blank">
<i class="fa fa-facebook fa-2x" aria-hidden="true"></i>
</a>
<a href="https://twitter.com/muatazbattah" target="_blank">
<i class="fa fa-twitter fa-2x" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/muataz-mahmoud-233036104" target="_blank">
<i class="fa fa-linkedin fa-2x" aria-hidden="true"></i>
</a>
</section>
</body>
</html>