-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (30 loc) · 1.21 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anton">
<link rel="stylesheet" href="./style.css">
<title>Login</title>
</head>
<body>
<div class="content">
<div class="head"><h1><i class="fa fa-user" style="font: size 58px"></i> Sign In</h1> </div>
<div class="loginbar">
<form action=""></form>
<input type="text" placeholder="Email ID">
</div>
<br>
<div class="password">
<form action=""></form>
<input type="password" placeholder="Password"> </div>
<br>
<div class="term"> <input type="checkbox" value="agreement"> I have read and agree to the terms of <a href="#">IEEE</a></div>
<br>
<button type="submit">Login</button>
</div>
<h1 class="logo" >Made By <a href="https://www.instagram.com/ieeemsit/?hl=en" target="_blank"> <img src="./ieee.jpg" alt="IEEE"></a></h1>
</body>
</html>