-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForms3.html
59 lines (51 loc) · 2.21 KB
/
Forms3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<a style="font-size: 2vw">Logging in</a>
<hr>
<style>
.container {
display: flex;
height: 100%;
width: 50%;
position: fixed;
z-index: 1;
overflow-x: hidden;
margin-outside: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="split left" style="border-color: black;" >
<a style="font-size: 0.8vw;font-weight: lighter;margin-left: 40px;color: darkgrey;">Email or phone number</a>
<br>
<label>
<input type="text" style="margin-left: 40px;width: 200px">
</label>
<br>
<a style="font-size: 0.8vw;font-weight: lighter;margin-left: 40px;color: darkgrey;margin-top: 100px">Password</a>
<br>
<label>
<input type="text" style="margin-left: 40px;width: 200px">
</label> <br>
<label>
<input type="checkbox" style="margin-left: 40px">
</label><a style="">Remember me</a>
<br>
<input type="submit" style=" width: 206px;background-color: lawngreen;color: white;margin-left: 40px;height: 50px;border-radius: 20px "><br></div>
<div class="split right" style="">
<button style="margin-left:200px;background-color: deeppink;padding: 4px;border-radius: 40px;"><img height="30px"
width="30px"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Instagram_logo_2022.svg/800px-Instagram_logo_2022.svg.png"></img><a
style="font-size: 1vw;margin: 20px">Instagram</a></button>
<button style="margin-left:200px;background-color: cornflowerblue;border-radius: 40px;padding: 4px;"><img
height="30px" width="30px"
src="https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg"></img><a
style="font-size: 1vw;margin: 20px">Facebook</a></button>
</div>
</div>
</body>
</html>