-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (105 loc) · 3.67 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Demo Website #1</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- the header -->
<header>
<!-- our main logo -->
<a id="logo" href="index.html">
<img src="avatar.jpeg" alt="Logo">
<span>HOME</span>
</a>
<!-- main navigation links -->
<nav>
<ul>
<li><a href="#">Features</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Log In</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</header>
<!-- the content -->
<main>
<!-- hero content -->
<div class="hero">
<div class="hero-content">
<h1 class="hero-title">Web Design</h1>
<p>Web Designing Made Easy and Efficient</p>
<a href="#">Learn More</a>
<a href="#">Sign Up</a>
</div>
</div>
<!-- features section -->
<div class="site-section">
<div class="site-section-inside">
<div class="section-header">
<h2>Key Features</h2>
</div>
<div class="feature-box">
<img src="like.png" alt="Easy to Use">
<h5>Easy to Use</h5>
<p>Just think of how easy this is to use. I can do it. So can you!</p>
</div>
<div class="feature-box">
<img src="faces.png" alt="Fun to Use">
<h5>Fun to Use</h5>
<p>Just think of how fun this is to use. I can do it. So can you!</p>
</div>
<div class="feature-box">
<img src="heart.png" alt="Fun to Use">
<h5>You'll Love It</h5>
<p>Just think of how warming this is to use. I can do it. So can you!</p>
</div>
</div>
</div>
<!-- testimonials section -->
<div class="site-section site-section-secondary">
<div class="site-section-inside">
<div class="section-header">
<h2>What the people say</h2>
</div>
<div class="testimonial-box">
<div class="testimonial-content">
Their service is by far the most influential I've ever seen.
</div>
<div class="testimonial-author">
<img src="sundar.jpg" alt="Sundar Pichai">
<h5>Sundar Pichai</h5>
<span>Google and Alphabet CEO</span>
</div>
</div>
<div class="testimonial-box">
<div class="testimonial-content">
Their service is the most trustable and easy to use.
</div>
<div class="testimonial-author">
<img src="brad.jpg" alt="Brad Green">
<h5>Brad Green</h5>
<span>Infosys CEO</span>
</div>
</div>
<div class="testimonial-box">
<div class="testimonial-content">
I just love the way they made everything so easy.
</div>
<div class="testimonial-author">
<img src="david.jpg" alt="David Beckham">
<h5>David Beckham</h5>
<span>Athelete</span>
</div>
</div>
</div>
</div>
</main>
<!-- the footer -->
<footer>
<img src="avatar.jpeg" alt="Footer Logo">
<span>Demo Website #1<br>Copyright © 2018-2020 </span>
</footer>
</body>
</html>