-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFirst.html
83 lines (74 loc) · 2.28 KB
/
First.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
<!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="styles.css">
<title>Hunger Help - Home</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: white;
color: white;
background-image: url('https://bbsat.files.wordpress.com/2012/01/img_40201.jpg');
background-size: 100%; /* Adjusted background-size property */
background-position: center;
background-repeat: no-repeat;
}
.homepage {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.logo {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
color:black
}
.introduction {
max-width: 600px;
margin-bottom: 30px;
}
.buttons-container {
display: flex;
gap: 20px;
}
.register-button,
.login-button {
background-color: #4CAF50;
color: white;
padding: 15px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.register-button:hover,
.login-button:hover {
background-color: #45a049;
}
p {
color:black;
}
</style>
</head>
<body>
<div class="homepage">
<div class="logo">Hunger Help</div>
<div class="introduction">
<p>Welcome to Hunger Help, where we connect donors with organizations to fight hunger and education and make a positive
impact on the world. Join us in our mission to make a difference!</p>
</div>
<div class="buttons-container">
<a href="register.html" class="register-button">Register</a>
<a href="login.html" class="login-button">Login</a>
</div>
</div>
</body>
</html>