-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp1.html
51 lines (47 loc) · 808 Bytes
/
temp1.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
<html>
<head>
<title>template1</title>
</head>
<style>
body{
background-color:#242484;
}
input#t1{
margin-top: 15px;
border-style: outset;
}
div.textbox{
margin-top: 20px;
/*border-style: outset;*/
}
div.loginArea{
position: relative;
background-color: white;
float: right;
margin-right: 20px;
margin-top: 15px;
width: 560px;
height: 460px;
}
.login{
border-style : outset;
margin-top: 15px;
}
#b1{
position: relative;
border-style: outset;
width: 50px;
left: 50%;
top:50%;
}
</style>
<body>
<div class="textbox">
<input type="text" class="login"></input><br>
<input type="text" class="login"></input>
</div>
<div class="loginArea">
<button id="b1">agree</button>
</div>
</body>
</html>