-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathppp1.html
65 lines (58 loc) · 1.5 KB
/
ppp1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login/Signup Buttons</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f4f4f4;
}
.buttons {
display: flex;
flex-direction: column;
}
.button {
padding: 10px 20px;
margin: 5px;
font-size: 14px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #3498db;
color: #fff;
text-align: center;
text-decoration: none;
}
.button:hover {
background-color: #2980b9;
}
#signup {
background-color: #4CAF50;
color: #fff;
}
#login {
background-color:#4CAF50 ;
color: #fff;
}
}
</style>
</head>
<body style="background-image:url('https://www.dropbox.com/scl/fi/ym67uiydya9xprgolrcw4/img.jpg?rlkey=f22ngjtly8u7wsm22bm2elftd&dl=0&raw=1');"
"background-size:cover">
<div class="buttons">
<a href="file:///C:/Users/ramak/OneDrive/Desktop/l2.html" class="button" id="login">
<big><h1>log in</big></h1></mark<br></a><br><br>
<a href="file:///C:/Users/ramak/OneDrive/Desktop/s2.html"class="button" id="signup" >
<big><h1>sign up</big></h1></mark<br></a>
</div>
</body>
</html>