-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1023 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 1023 Bytes
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Covalence</title>
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<link rel="stylesheet" href="app.css">
</head>
<body>
<main>
<h1 class="text-center text-blue">Login</h1>
<hr>
<form>
<label for="email">Email</label>
<input type="email" name="email" required>
<label for="password">Password</label>
<input type="password" name="password" required>
<button id="submitButton">Login</button>
</form>
<p>
<div class="text-center" id="text">This color should be <span class="highlight-yellow"> highlighted yellow.</span></div>
</p>
<h2 class="text-center"> <a href="#">Footer</a></h2>
</main>
</body>
</html>