-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
114 lines (103 loc) · 4.87 KB
/
about.html
File metadata and controls
114 lines (103 loc) · 4.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
103
104
105
106
107
108
109
110
111
112
113
114
<!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 Titel</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 id="active" href="about.html">About</a></li>
<li><a href="item.html">Item</a></li>
<li><a 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><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="contentsection contemplete clear">
<div class="maincontent clear">
<div class="about">
<h2>About me</h2>
<img src="images/post.jpg" alt="My Image">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/tOJK7WpZuYI" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</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>