-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (95 loc) · 2.87 KB
/
index.html
File metadata and controls
102 lines (95 loc) · 2.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<header id="main">
<img src="metalwow.png" height=150/>
<div class="title">
Someone's blog
</div>
</header>
<nav class="cl-effect-2" id="cl-effect-2">
<a href="#cl-effect-2"><span data-hover="HOME">HOME</span></a>
<a href="#cl-effect-2"><span data-hover="ABOUT ME">ABOUT ME</span></a>
<a href="#cl-effect-2"><span data-hover="CONTACT">CONTACT</span></a>
<a href="#cl-effect-2"><span data-hover="FACEBOOK">FACEBOOK</span></a>
<a href="#cl-effect-2"><span data-hover="TWITTER">TWITTER</span></a>
</nav>
<section id="slideshow">
<span id="left-arrow" onclick="minusSlide()">
<i class="fa fa-arrow-left"></i>
</span>
<span id="right-arrow" onclick="plusSlide()">
<i class="fa fa-arrow-right"></i>
</span>
<div id="holder">
<article>
<div class="titre-article">
A POST
</div>
</article>
<article>
</article>
<article>
</article>
<article>
</article>
</div>
</section>
<section id="news">
<article class="clearfix">
<img src="http://wallpaper.metalship.org/images/megadeth2.jpg" />
<header>
A POST
</header>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.
</p>
</article>
<article class="clearfix">
<img src="http://wallpaper.metalship.org/images/megadeth2.jpg" />
<header>
A POST
</header>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.
</p>
</article>
<article class="clearfix">
<img src="http://wallpaper.metalship.org/images/megadeth2.jpg" />
<header>
A POST
</header>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.
</p>
</article>
<article class="clearfix">
<img src="http://wallpaper.metalship.org/images/megadeth2.jpg" />
<header>
A POST
</header>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.
</p>
</article>
</section>
<footer>
Copyright © 2014 Elheni Mokhles
</footer>
<script src="jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>