-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (57 loc) · 1.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-wodth, initial-scale = 1.0">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<link rel="stylesheet" href="./landing/landing.css">
<title>Landing Page</title>
</head>
<body>
<div class="parent">
<div class="navbar">
<div class="logo">
Alt Reality
</div>
<div class="navitems">
<div class="item">
Home
</div>
<div class="item">
About us
</div>
<div class="item">
Pricing
</div>
<div class="item">
Features
</div>
<div class="item" id = "signin">
Sign in
</div>
</div>
</div>
<div class="content">
<div class="ldiv">
<div class="text1">
<b>
Bring your online<br>
meetings to life
</b>
</div>
<div class="text2">
<b>
Alt Reality is an online platform designed to<br>
make virtual meetings more interactive.
</b>
</div>
<div class = "getstarted" onclick="location.href='./landing/started.html';">
Get Started
</div>
</div>
<div class="rdiv">
</div>
</div>
</div>
</body>
</html>