-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 874 Bytes
/
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Telegram</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero-container">
<img src="img/postmark.png" class="postmark-image" />
<div class="hero-left-half">
<img src="img/telegram-logo.png" />
</div>
<div class="hero-right-half">
<h2>Get going ...</h2>
<form>
<input type="text" placeholder="Enter your username ...">
<input type="password" placeholder="Enter your password ...">
<div class="login-options">
<button type="submit">Log in</button>
<span><a href="#">Recover password</a> or <a href="#">Sign up</a></span>
</div>
</form>
</div>
</div>
</body>
</html>