-
Notifications
You must be signed in to change notification settings - Fork 0
/
Landing.html
122 lines (85 loc) · 2.79 KB
/
Landing.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width+device.width, intial-scale=1.0">
<meta http.equiv="X-UA.compatible" content="ie.edge">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"/>
</head>
<body>
<div id="main">
<div class="top">
<div class="overlay">
<h3>Enter your login credentials</h3>
<form action="">
<label for="first">
Username:
</label>
<input type="text"
id="first"
name="first"
placeholder="Enter your Username" required>
<label for="password">
Password:
</label>
<input type="password"
id="password"
name="password"
placeholder="Enter your Password" required>
<div class="wrap">
<button type="submit"
onclick="solve()">
Submit
</button>
</div>
</form>
<p>Not registered?
<a href="#"
style="text-decoration: none;">
Create an account
</a>
</p>
<div class="text">
<div class="t1">
<h1>PROGRAMMING WORLD</h1>
<div class="icons">
<i class="ri-html5-fill"></i>
<i class="ri-java-fill"></i>
<i class="ri-reactjs-line"></i>
<i class="ri-javascript-line"></i>
<i class="ri-angularjs-line"></i>
</div>
</div>
<div class="rtext">
<h1>Projects</h1>
<h1>Source codes</h1>
</div>
<div class="icons">
<i class="ri-instagram-line"></i>
<i class="ri-whatsapp-line"></i>
<i class="ri-snapchat-line"></i>
</div>
</div>
</div>
</div>
<div class="bottom">
<div class="b1">
<h1>FRONTEND</h1>
</div>
<div class="b2">
<h1>BACKEND</h1>
</div>
<div class="b3">
<div class="overlay">
<p>Privacy policy</p>
<p>Terms and conditions</p>
<p>Contact Us</p>
<p>About us</p>
</div>
</div>
</div>
</div>
</body>
</html>