-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
67 lines (63 loc) · 1.47 KB
/
gallery.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Rachid Nasr Portfolio</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<a href="#"><img id="Insert_logo" src="inspiration/logo2.jpg" alt="Logo" /></a>
</header>
<div class="sidebar1">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="showreel.html">Showreel</a></li>
<li><a id="active" href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<aside>
<div class="card">
<br /><img class="logo" src="img/rn_logo.png" />
<b class="B1">Rachid Nasr</b>
<br />
<br />
<br />
<br /> Cleyndertweg 21
<br /> 1010 KS, AMSTERDAM
<br /> info@ rachidnasr.com
<br /> tel : +31.625.521.251
<br />
<br />
</div>
</aside>
</div>
<article class="content">
<h1>Gallery</h1>
<section>
<div id="slider">
<a href="#image1">1</a>
<a href="#image2">2</a>
<a href="#image3">3</a>
<a href="#image4">4</a>
</div>
<div id="images">
<img id="image1" src="img/IMG_001.jpg" />
<img id="image2" src="img/IMG_010.jpg" />
<img id="image3" src="img/IMG_024.jpg" />
<img id="image4" src="img/IMG_036.jpg" />
</div>
</section>
</article>
<footer>
<address>
© 2016 Rachid Nasr
</address>
</footer>
</div>
</body>
</html>