-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
135 lines (131 loc) · 5.56 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
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Portfolio</title>
</head>
<body>
<section class="header">
<div class="container">
<nav>
<div class="logo"><h1>Mask Coder</h1></div>
<div class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">about us</a></li>
<li><a href="#">contact us</a></li>
</ul>
</div>
</nav>
<div class="hero">
<div class="hero-content">
<div class="hero-header">
This is website is awesome
</div>
<p class="hero-desc">
This website has some subtext that goes here under
the main title. It's a smaller font and the color is
lower
</p>
<button class="btn">Sign up</button>
</div>
<div class="hero-img">
<img
src="https://images.unsplash.com/photo-1661956602944-249bcd04b63f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80"
alt=""
/>
</div>
</div>
</div>
</section>
<section class="about">
<div class="container padding-lr">
<div class="about-header">
<h1>About us</h1>
</div>
<div class="about-content">
<div class="box">
<div class="box-img">
<img
src="https://images.pexels.com/photos/574071/pexels-photo-574071.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<p>
this is some subtext under an illustration or image
</p>
</div>
<div class="box">
<div class="box-img">
<img
src="https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<p>
this is some subtext under an illustration or image
</p>
</div>
<div class="box">
<div class="box-img">
<img
src="https://images.pexels.com/photos/196659/pexels-photo-196659.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<p>
this is some subtext under an illustration or image
</p>
</div>
<div class="box">
<div class="box-img">
<img
src="https://images.pexels.com/photos/1181467/pexels-photo-1181467.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<p>
this is some subtext under an illustration or image
</p>
</div>
</div>
</div>
</section>
<section class="slogan">
<div class="container padding-lg">
<div class="slogan-content">
<p class="slogan-text">
This is an inspiring quote or a testimonial from a
customer. Maybe it's just filling up space, or marbe
people will actually read it. Who knows? All i know is
that it looks nice.
</p>
<span class="author">-Thor, God of Thunder</span>
</div>
</div>
</section>
<footer class="footer">
<div class="container padding-tb">
<div class="footer-wrapper">
<div class="footer-content">
<div class="footer-text">
<p class="footer-header">
Call to action!!! It's time!
</p>
<p class="footer-desc">
Sign up for our product by clicking that button
right over there !
</p>
</div>
</div>
<div class="footer-btn">
<button class="secondary-btn">Sign up</button>
</div>
</div>
</div>
</footer>
</body>
</html>