-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (129 loc) · 6.89 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
136
137
138
139
140
141
142
<!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">
<title>Project</title>
<link rel="stylesheet" href="main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet">
</head>
<body>
<div class="container-xxl">
<div class="first-section">
<div class="banner">
<header>
<div class="container">
<div class="header__content">
<div class="header__logo-name">
<a href="#">PROJECT</a>
</div>
<div class="header__links">
<a href="#">PROJECTS</a>
<a href="#">ABOUT US</a>
<a href="#">STORIES</a>
<a href="#">CONTACT</a>
</div>
<button class="header__modal">
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="17" viewBox="0 0 22 17"
fill="none">
<line y1="1.5" x2="22" y2="1.5" stroke="white" stroke-width="3" />
<line y1="8.12073" x2="22" y2="8.12073" stroke="white" stroke-width="3" />
<line y1="14.7413" x2="22" y2="14.7413" stroke="white" stroke-width="3" />
</svg></button>
<div class="active">
<a href="index.html">Home</a>
<a href="#">PROJECTS</a>
<a href="#">ABOUT US</a>
<a href="#">STORIES</a>
<a href="#">CONTACT</a>
<div class="owerlay"></div>
</div>
</div>
</div>
</header>
<div class="container">
<div class="banner__content ">
<div class="banner__headline">
<div class="banner__headline__img">
<img src="./images/Logo_1 2.svg" alt="Error">
</div>
<h1>Your Headline Here</h1>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod. </p>
</div>
</div>
</div>
</div>
<main>
<section class="about">
<div class="container">
<div class="about__content">
<div class="about__content__header">
<h1>This is the Section Headline, Continues to Two Lines</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit sed do eiusmod.</p>
</div>
<div class="about__content__body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum. Sed ut perspiciatis unde omnis.</p>
<p>Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa
qui officia deserunt mollit anim id est laborum. </p>
</div>
<div class="about__content__btn">
<button>Read More</button>
</div>
</div>
</div>
</section>
<section class="learn-more">
<div class="container">
<div class="learn-more__content">
<h1>Learn more
about our culture...</h1>
<button>
<svg xmlns="http://www.w3.org/2000/svg" width="145" height="144" viewBox="0 0 145 144"
fill="none">
<ellipse cx="72.5" cy="71.7342" rx="72.5" ry="71.7342" fill="#7B61FF" />
<path
d="M102.268 69.4314C103.843 70.1382 103.843 72.3739 102.268 73.0807L58.4023 92.7694C57.079 93.3634 55.5833 92.3953 55.5833 90.9448L55.5833 51.5673C55.5833 50.1168 57.079 49.1487 58.4023 49.7426L102.268 69.4314Z"
fill="white" />
</svg>
</button>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur.</p>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer__content">
<div class="footer__content__left">
<div class="footer__content__logo">
<a href="#"><img src="./images/Footer__logo.svg" alt="Error"></a>
</div>
<div class="footer__content__about">
<p>123 Street,
Anytown, USA 12345</p>
<a href="#">hello@website.com</a>
</div>
</div>
<div class="footer__content__right">
<p>© 2021 Project. All rights reserved</p>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>