forked from abushoaib99/Web-Tamplete-using-HTML-CSS-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitemtwo.html
More file actions
98 lines (90 loc) · 3.17 KB
/
itemtwo.html
File metadata and controls
98 lines (90 loc) · 3.17 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
<!DOCTYPE html>
<html>
<head>
<title>Basic Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="font-awesome-4.7.0/css/font-awesome.css">
</head>
<body>
<div class="headersection templete clear">
<div class="logo templete clear">
<img src="images/dove.png" alt="Logo">
<h2>Website Title</h2>
<p>Our website description</p>
</div>
<div class="social templete clear">
<a target="_blank" href="http://www.facebook.com"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a target="_blank" href="http://www.gmail.com"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
<a target="_blank" href="http://www.linkedin.com"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="navsection templete">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="item.html">Item</a></li>
<li><a id="active" href="itemtwo.html">Item Two</a></li>
<li><a href="countdown.html">Countdown</a></li>
<li><a href="about.html">Product</a>
<ul>
<li><a href="#">Product One</a></li>
<li><a href="#">Product two</a></li>
<li><a href="#">Product three</a></li>
<li><a href="#">Product four</a></li>
<li><a href="#">Product five</a></li>
</ul>
</li>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="contentsection contemplete clear">
<div class="maincontent clear">
<div class="photo">
<img src="images/shoaib.jpg" alt="one image">
</div>
</div>
<div class="sidebar clear">
<div class="samesidebar clear">
<h2>Latest articles</h2>
<ul>
<li><a href="#">Post titel one will be go here</a></li>
<li><a href="#">Post titel two will be go here</a></li>
<li><a href="#">Post titel three will be go here</a></li>
<li><a href="#">Post titel four will be go here</a></li>
<li><a href="#">Post titel five will be go here</a></li>
<li><a href="#">Post titel six will be go here</a></li>
</ul>
</div>
<div class="samesidebar clear">
<h2>Sidebar one header</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<p>
1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<div class="samesidebar clear">
<h2>Sidebar one header</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<p>
1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
</div>
</div>
<div class="footersection templete clear">
<div class="footermenu"></div>
<p>© Compyright Training with Live Project.</p>
</div>
<div class="fixedicon clear">
<a href="http://www.facebook.com"><img src="images/facebook.png" alt="Facebook"></a>
<a href="http://www.gmail.com"><img src="images/gmail.png" alt="Gmail"></a>
<a href="http://www.linkedin.com"><img src="images/linkedin.png" alt="Linkedin"></a>
</div>
<script type="text/javascript" src="js/scrolltotop.js"></script>
</body>
</html>