-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (49 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css"
integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Coffee Website</title>
</head>
<body>
<main>
<header>
<div class="left">
<h2>Coffee</h2>
</div>
<div class="mid">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Membership</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="right">
<div class="r1">
<p class="p">Sign in</p>
</div>
</div>
</header>
<section>
<div class="main-div">
<div class="icon">
<!-- icon div start -->
<div><i class="fa-brands fa-facebook in"></i></div>
<div><i class="fa-brands fa-youtube in"></i></div>
<div><i class="fa-brands fa-x-twitter in"></i></div>
</div>
<div class="paragraph">
<h3>#Coffee for hot days</h3>
<h1><span class="sp">-</span>COLD BREW</h1>
<h3>Boots your productivity and build your mood.</h3>
</div>
</div>
</section>
</main>
</body>
</html>