-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.html
162 lines (161 loc) · 3.7 KB
/
example.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My page</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header -->
<header>
<a href="index.html">
<img src="img/logo.svg" alt="Logo">
</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contacts.html">Contacts</a></li>
</ul>
</nav>
</header>
<!-- End of Header -->
<!-- Hero -->
<section>
<img src="img/slide.jpg" alt="Slide">
<h1>
We are about to change the way
<span>you publish on the web</span>
</h1>
</section>
<!-- End of Hero -->
<!-- About -->
<section>
<h2>About Us</h2>
<p>
We are a new design studio based in USA. We have over 20 years of combined experience, and know a thing or two about designing websites and mobile apps. Clever use of technology and lean processes enable us to work faster and smarter.
</p>
</section>
<!-- End of About -->
<!-- Stats -->
<section>
<ul>
<li>
<h3>548</h3>
<p>Projects Completed</p>
</li>
<li>
<h3>1465</h3>
<p>Working Hours</p>
</li>
<li>
<h3>612</h3>
<p>Positive Feedbacks</p>
</li>
<li>
<h3>735</h3>
<p>Happy Clients</p>
</li>
</ul>
</section>
<!-- End of Stats -->
<!-- Portfolio -->
<section>
<h2>Best Projects</h2>
<p>
Donec orci sem, pretium ac dolor et, faucibus faucibus mauris. Etiam,pellentesque faucibus. Vestibulum gravida volutpat ipsum non ultrices.
</p>
<ul>
<li>
<img src="img/portfolio/1.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/2.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/3.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/4.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/5.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/6.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/7.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/8.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
<li>
<img src="img/portfolio/9.jpg" alt="Project Thumb">
<a href="#">
<h3>Vinyl Record</h3>
<p>Mockup</p>
</a>
</li>
</ul>
</section>
<!-- End of Portfolio -->
<!-- Quote -->
<section>
<blockquote>
Outstanding job and exceeded all expectations. It was a pleasure to work with them on a sizable first project and am looking forward to start the next one asap.
</blockquote>
<cite>Michael Hopkins</cite>
</section>
<!-- End of Quote -->
<!-- Clients -->
<section>
<ul>
<li><a href="#"><img src="img/clients/1.png" alt="Brand"></a></li>
<li><a href="#"><img src="img/clients/2.png" alt="Brand"></a></li>
<li><a href="#"><img src="img/clients/3.png" alt="Brand"></a></li>
<li><a href="#"><img src="img/clients/4.png" alt="Brand"></a></li>
<li><a href="#"><img src="img/clients/5.png" alt="Brand"></a></li>
</ul>
</section>
<!-- End of Clients -->
<!-- Footer -->
<footer>
2017 © Frontend Development. De parcă all rights reserved.
</footer>
<!-- End of Footer -->
</body>
</html>