-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlecture6.html
More file actions
52 lines (49 loc) · 1.08 KB
/
lecture6.html
File metadata and controls
52 lines (49 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<style>
/* #parent{
height: 50px;;
width: 100px;
border-radius: 5px;
background-color: black;
border: 2px;
display: flex;
}
#button{
background-color: yellow;
}
#sign in{
background-color: skyblue;
} */
#parent{
height: 400px;
width: 300px;
border: 50px solid gray;
border-radius: 10px;
align-items: center;
display: flex;
justify-content: center;
}
#h1{
padding-top: 200px;
padding-left: 100px;
}
#sign in{
background-color: skyblue;
}
</style>
<div id="parent">
<input>
<button>Email</button>
<button>Password</button>
<p>Enter your password</p>
<button>Sign in</button>
</div>
</body>
</html>