-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.66 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
</style>
<link rel="stylesheet" href="css/styles.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to GitHub Talk</title>
</head>
<body>
<div class="status-bar">
<div class="status-bar__column">
<span>No Service</span>
<i class="fa-solid fa-wifi"></i>
</div>
<div class="status-bar__column">
<span>08:29</span>
</div>
<div class="status-bar__column">
<span>100%</span>
<i class="fa-solid fa-battery-full fa-lg"></i>
<i class="fa-solid fa-bolt"></i>
</div>
</div>
<header class="welcome-header">
<span class="welcome-header__icon"
><i class="fa-brands fa-github"></i
></span>
<h1 class="welcome-header__title">Sign in to GitHub Talk</h1>
</header>
<form action="friends.html" method="get" id="login-form">
<label for="username">Username or email address</label>
<input required id="username" name="username" type="text" />
<label for="password">Password <a href="#">Forgot password?</a></label>
<input required id="password" name="password" type="password" />
<input type="submit" value="Sign in" />
<a href="#">New to GitHub? Create an account</a>
</form>
<div id="no-mobile">
<span>Your screen is so big</span>
</div>
<script
src="https://kit.fontawesome.com/9076bbc1a6.js"
crossorigin="anonymous"
></script>
</body>
</html>