-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (113 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<link rel="stylesheet" href="home.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=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href='https://fonts.cdnfonts.com/css/league-spartan' rel='stylesheet'>
</head>
<style>
body {
margin: 0px;
padding: 0px;
background-color: rgba(255, 255, 255, 0.373);
color: black;
min-height: 100vh;
}
</style>
<body>
<header>
<div class="logo">
<img src="rlogoc.png" alt="logo">
<a href="#" class="name">VirtuLink</a>
</div>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Menu</a>
<div class="drop">
<ul>
<br>
<li><a href="#">Abc</a></li>
<li><a href="#">Abc</a></li>
</ul>
</div>
</li>
<li><a href="#">Features</a></li>
<li><a href="login/views/login.html">Login</a></li>
</ul>
</header>
<section class="banner">
<script type="text/javascript">window.addEventListener("scroll", function () {
var header = document.querySelector("header");
header.classList.toggle("stycky", window.scrollY > 0);
})
</script>
</section>
<div class="container">
<div class="centered">
<h1>Welcome to <br> VirtuLink</h1>
<p>Sign in now to chat, meet, call, and collaborate all in one place.</p>
<button type="button"><span></span><a href="Register/register_form.php">Sign in</a></button>
</div>
</div>
<div class="center">
<h1>New to VirtuLink?</h1>
<button type="button"><span></span><a href="#"></a>Sign up now</button>
</div>
<div class="center">
<h1>Learn how to use VirtuLink</h1>
<div class="row">
<div class="column">
<i class="fa-regular fa-circle-check"></i>
<h1>Get started</h1>
<p>Learn how to create and manage teams and channels, schedule a meeting, turn on language translations,
and share files.</p>
</div>
<div class="column">
<i class="fa-solid fa-users"></i>
<h1>Meetings</h1>
<p>Learn how to transition from a chat to a call for deeper collaboration, manage calendar invites, join
a meeting directly in Teams, and use background effects.</p>
</div>
<div class="column">
<i class="fa-regular fa-lightbulb"></i>
<h1>Tips and tricks</h1>
<p>Learn how to set your availability status, stay up to date with the activity feed, and create group
chats and coauthor shared files for real-time collaboration.</p>
</div>
<div class="column">
<i class="fa-solid fa-laptop-code"></i>
<h1>VirtuLink for Education</h1>
<p>Help drive the transition to inclusive online or hybrid learning, build confidence with remote
learning tools, and maintain student engagement.</p>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<h3>About </h3>
<p>Follow VirtuLink</p>
<div class="socials">
<li><a href="#"><i class='bx bxl-twitter'></i></a></li>
<li><a href="#"><i class='bx bxl-instagram'></i></a></li>
<li><a href="#"><i class='bx bx-location-plus'></i></a></li>
<li><a href="#"><i class='bx bx-envelope'></i></a></li>
<li><a href="#"><i class='bx bxl-google'></i></a></li>
</div>
<div class="footer-bottom">
<p>copyright © 2023 codeOpacity. All Rights Reserved.
</p>
</div>
</div>
</footer>
</body>
</html>