-
Notifications
You must be signed in to change notification settings - Fork 189
/
index.html
37 lines (32 loc) · 1.19 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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<title>Little Lemon</title>
<meta property="og:title" content="Our Menu">
<meta property="og:type" content="website">
<meta property="og:image" content="logo.png">
<meta property="og:url" content="https://littlelemon/">
<meta property="og:description" content="Little Lemon is a family-owned Mediterranean restaurant, focused on traditional recipes served with a modern twist.">
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="Little Lemon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="logo.png">
</header>
<main>
<form action="POST" method="post">
<div>
<label for="username">Username</label>
<input type="text" name="username" id="username" required minlength="2">
</div>
<div>
<label for="passwd">Password</label>
<input type="password" name="password" id="passwd" required minlength="2">
</div>
<button type="submit">Log In</button>
</form>
</main>
</body>
</html>