forked from erpranjalmishra/heliXom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (114 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>heliXom</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<meta name="theme-color" content="#0e88be">
<style>
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
background-color: #ffffff;
background-image: url('2.jpg'); /* Replace with your image path */
background-size: cover;
background-position: center;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #ffffff;
padding: 10px 20px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar img {
height: px;
}
.navbar .right-menu {
display: flex;
align-items: center;
gap: 15px;
}
.navbar .right-menu a {
color: #202124;
text-decoration: none;
font-size: auto;
}
.main-content {
display: flex;
justify-content: space-between;
align-items: center;
height: calc(100% - 60px);
padding: 0 50px;
box-sizing: border-box;
}
.left-content {
max-width: 50%;
}
.left-content h1 {
font-size: 48px;
color: #202124;
margin-bottom: 10px;
}
.left-content p {
font-size: 18px;
color: #5f6368;
margin: 10px 0 20px;
}
.left-content .button-group {
display: flex;
gap: 10px;
}
.left-content button {
padding: 12px 24px;
background-color: #1a73e8;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.left-content input[type="text"] {
padding: 12px;
font-size: 16px;
border: 1px solid #dadce0;
border-radius: 5px;
}
.right-content {
max-width: 40%;
text-align: center;
}
.right-content img {
width: 100%;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="navbar">
heliXom <!-- Replace with your logo path -->
<div class="right-menu">
<a href="#">Help</a>
<a href="#">Settings</a>
</a>
</div>
</div></marquee>
<div class="main-content">
<div class="left-content">
<h1>Welcome</h1>
<p>Connect, collaborate and celebrate from anywhere with heliXom.</p>
<div class="button-group">
<button>New meeting</button>
<input type="text" placeholder="Enter a code or link">
<button>Join</button>
</div>
</div>
<div class="right-content">
<img src="android-chrome-512x512.png" alt="Meeting illustration"> <!-- Replace with your right-side image path -->
</div>
</div>
</body>
</html>