-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
94 lines (85 loc) · 3.49 KB
/
index1.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
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>Twitter login page with only CSS</title>
<link rel="icon" type="image/png" href="images/tweet.png" >
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.left{
background-image:url('./images/bluetweet.png');
background-repeat: no-repeat;
background-size:200%;
}
</style>
</head>
<body>
<button><a href="../index.html">BACK</a></button>
<div class="maindiv">
<div class="parent">
<div class="left">
<div class="div1">
<h2><b>You're one step away from the <br/> shiny new Twitter.com</b></h2>
<p><b>We've added tons of cool features, including ...</b></p>
</div>
<div class="icons">
<p><i class="fa fa-hashtag"></i>
Explore
<br/>Get the latest Tweets, news, and videos in one place.
</p>
<p>
<i class="fa fa-bookmark"></i>
Bookmarks
<br/>Save that interesting Tweet for later.
<p>
<p>
<i class="fa fa-paint-brush"></i>
Personalize
<br/>Choose from new themes and more dark mode operations.
</p>
</div>
</div>
<div class="right">
<form>
<div class="text">
<input class="pwd" type="email" placeholder="Phone, email or username"/>
<input class="pwd" type="password" name="password" placeholder="Password"/>
<button class="button-1 login">login</button><br/>
<label><a href="#">Forgot password?</a></label>
</div>
</form>
<div class="card">
<div class="head"></div>
<img class="image" src="images/tweet.png" />
<h2>See what's happening in <br/> the world right now</h2>
<p>Join Twitter today.</p>
<input type="button" class="button-1 signup" name="signup" value="Sign up">
<br/>
<input type="button" class="button-1 login" name="login" value="Log in">
</div>
</div>
</div>
<div class="footer">
<ul>
<a href=""><li>About</li></a>
<a href=""><li> HelpCenter</li></a>
<a href=""><li>Blog</li></a>
<a href=""><li>Status</li></a>
<a href=""><li>Jobs</li></a>
<a href=""><li>Terms</li></a>
<a href=""><li>Privacy Policy</li></a>
<a href=""><li>Cookies</li></a>
<a href=""><li>Adsinfo</li></a>
<a href=""><li>Brand</li></a>
<a href=""><li>Apps</li></a>
<a href=""><li>Advertise</li></a>
<a href=""><li>Marketing</li></a>
<a href=""><li>Business</li></a>
<a href=""><li>Developers</li></a>
<a href=""><li>Directory</li></a>
<a href=""><li>Settings</li></a>
<a href=""><li>©2019 Twitter</li></a>
</ul>
</div>
</div>
</body>
</html>