-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreeter.html
More file actions
24 lines (23 loc) · 744 Bytes
/
greeter.html
File metadata and controls
24 lines (23 loc) · 744 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>greetings</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Notable&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/greeter.css">
</head>
<body>
<section class="grid">
<form class="form">
<label for="greetings">Tell us your name</label>
<input type="text" name="greetings" id="greetings" placeholder="Your name here">
<button class="greetingBtn">Say Hello</button>
</form>
<div id="hello">
</div>
</section>
<script type="module" src="js/greeting-control.js"></script>
</body>
</html>