-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (84 loc) · 3.33 KB
/
index.html
File metadata and controls
92 lines (84 loc) · 3.33 KB
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
<!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="/css/style.css">
<script src="js/dropdown.js"></script>
<link rel="icon" href="/assets/icon.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<title>BeeHub</title>
</head>
<body>
<header>
<div id="header-left">
<!-- <div class="dropdown">
<button onclick="myFunction()" class="dropbtn"><img src="/assets/menu icon.png" alt=""></button>
<div id="myDropdown" class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div> -->
</div>
<div id="header-center">
<img src="/assets/icon.png" alt="">
<h1 class="orange">BeeHub</h1>
</div>
<div id="header-right">
<div class="link">
<a href="/html/login.html">Login</a>
</div>
<div class="link">
<a href="/html/register.html">Register</a>
</div>
</div>
</header>
<!-- CONTENT -->
<div class="mainbanner">
<div class="top-main-banner"></div>
<div class="mid-main-banner">
<h1>MEET YOUR NEW ASSISTANT</h1>
<br>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae illo dolore harum reprehenderit exercitationem impedit tempore, earum ullam alias voluptatum assumenda, sed, at placeat quidem?
</p>
<br><br><br>
<div class="button-main-banner">
<div class="leftbutton">
<a href="/html/register.html"><h3>Register</h3></a>
</div>
<div class="rightbutton">
<a href="/html/login.html"><h3>Log In</h3></a>
</div>
</div>
</div>
<div class="bottom-main-banner"></div>
</div>
<main class="container">
<div id="left subcontent">
<img src="/assets/background(full).jpg" alt="">
</div>
<div id="right subcontent">
<h1>MEET YOUR NEW ASSISTANT</h1>
<br>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae illo dolore harum reprehenderit exercitationem impedit tempore, earum ullam alias voluptatum assumenda, sed, at placeat quidem?
</p>
</div>
</main>
<main class="container">
<div id="left subcontent">
<h1>MEET YOUR NEW ASSISTANT</h1>
<br>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae illo dolore harum reprehenderit exercitationem impedit tempore, earum ullam alias voluptatum assumenda, sed, at placeat quidem?
</p>
</div>
<div id="right subcontent">
<img src="/assets/background(full).jpg" alt="">
</div>
</main>
</body>
</html>