-
Notifications
You must be signed in to change notification settings - Fork 2
/
portfolio.html
71 lines (66 loc) · 2.56 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Lato:100,400,700,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles/main.css">
<title>Portfolio</title>
</head>
<body>
<div class="grid-container">
<div class="row main-header">
<div class="col-4">
<a href="https://i.imgur.com/2ZtsTbi.gif">
<img src="img/logo.png" alt="Logo">
</a>
</div>
<div class="col-8 full">
<h1 class="text-thin text-super">Fady Nabil</h1>
<h2 class="text-small">FRONT-END NINJA</h2>
</div>
</div>
<div class="row full-width">
<div class="col-12">
<a href="http://blog.udacity.com/2013/05/html5-game-development-contest-winners.html">
<img src="img/coinrun.png" alt="Coin Run Game Screenshot">
</a>
</div>
</div>
<div class="row list-header">
<h1 class="text-bright text-big text-normal">Featured Work</h1>
</div>
<div class="row card-list justify">
<div class="col-4 card">
<img src="img/monyhelal.png" alt="Mony Helal website Screenshot">
<h1 class="text-normal text-medium">Mony Helal Website</h1>
<a class="text-thin" href="https://www.monyhelal.com">www.monyhelal.com</a>
</div>
<div class="col-4 card">
<img src="img/Saba7oKorah.png" alt="Saba7o Korah Website Screenshot">
<h1 class="text-normal text-medium">Saba7o Korah Website</h1>
<a class="text-thin" href="https://www.saba7o-korah.esy.es">www.saba7o-korah.esy.es</a>
</div>
<div class="col-4 card">
<img src="img/haydimousa.png" alt="Haydi Mousa Website Screenshot">
<h1 class="text-normal text-medium">Haydi Mousa Website</h1>
<a class="text-thin" href="www.haidymoussa.esy.es">www.haidymoussa.esy.es</a>
</div>
</div>
<div class="row list-header">
<h1 class="text-bright text-big text-normal">Favorite Books</h1>
</div>
<div class="row card-list books">
<div class="col-4 card">
<img src="img/mind.jpg" alt="Future of the mind book cover screenshot">
<h1 class="text-normal text-medium">The Future of the Mind</h1>
<a class="text-thin" href="http://goo.gl/S948ar">http://goo.gl/S948ar</a>
</div>
<div class="col-4 card space-left">
<img src="img/guns.jpg" alt="Guns, Germs and Steel book screenshot">
<h1 class="text-normal text-medium">Guns, Germs and Steel</h1>
<a class="text-thin" href="http://goo.gl/VhPCwz">http://goo.gl/VhPCwz</a>
</div>
</div>
</div>
</body>
</html>