-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
57 lines (54 loc) · 1.83 KB
/
homepage.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="home.css">
<title>Home Screen</title>
</head>
<body>
<div class="navbar">
<div class="logo">
<img src="logo.png" alt="Logo">
<div class="title">AI Support Team</div>
</div>
<div class="nav-links">
<a href="#home">HOME</a>
<a href="#modules">MODULES</a>
<a href="#about">ABOUT</a>
</div>
</div>
<div class="hero-carousel">
<img src="go2-edu.webp" alt="Hero Image 1" class="active">
<!-- Add more images for the carousel as needed -->
<div class="hero-content">
<h1>Unitree GO2 EDU</h1>
<a href="another-page.html" class="hero-button">Start</a>
</div>
</div>
<div class="modules-section" id="modules">
<div class="module">
<img src="ccsu_wearecentral_ads_8.5x11_final.jpg" alt="Module Image 1">
<div class="module-content">
<h3>Advertisement 1</h3>
<p>Join CCSU Today!</p>
</div>
</div>
<div class="module gradient">
<div class="module-content">
<h3>Gradient Module Title</h3>
<p>Module description with gradient background.</p>
</div>
</div>
<div class="module">
<img src="module-image2.jpg" alt="Module Image 2">
<div class="module-content">
<h3>Module Title 2</h3>
<p>Module description goes here.</p>
</div>
</div>
<!-- Add more modules as needed -->
</div>
<script src="carousel.js"></script>
</body>
</html>