-
Notifications
You must be signed in to change notification settings - Fork 0
/
home_index.html
73 lines (64 loc) · 1.93 KB
/
home_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Synchrony Tech Thrive</title>
<link rel="stylesheet" href="home_styles.css">
<title>Profile Buttons</title>
</head>
</head>
<body>
<header>
<div class="logo">
<img src="logo.png" alt="Company Logo" />
</div>
<div class="logo1">
<img src="images.png" alt="Company Logo" />
<style>
.logo1 {
padding: 1px;
border: 3px solid #000000;
border-radius: 8px;
display: inline-block;
}
.logo1 img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
</style>
</div>
<div class="profile-icon">
<a href="register.html">
<button class="profile-button">Sign Up</button>
</a>
<a href="index.html">
<button class="profile-button">Log In</button>
</a>
</div>
</div>
</header>
<main>
<div class="company-info">
<h1>Team CodeRED || Tech Thrive Hackathon</h1>
</div>
<div class="stock-images">
<img src="let1.png" alt="Stock Image 1" />
<img src="stock2.jpg" alt="Stock Image 2" />
</div>
</main>
<footer>
<div class="footer-section">
<h2>About Us</h2>
<p>Your about us content goes here.</p>
</div>
<div class="footer-section">
<h2>Contact Us</h2>
<p>Your contact information goes here.</p>
</div>
<p>© 2024 All Rights Reserved</p>
</footer>
<script src="home_script.js"></script>
</body>
</html>