Skip to content

Commit 4b28e63

Browse files
committed
raw: adds a simple input and a button
1 parent b65fe80 commit 4b28e63

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Learning to build API's</title>
7+
</head>
8+
<body>
9+
10+
<h1 class="title">
11+
Insert a name
12+
</h1>
13+
14+
<div class="div conteiner">
15+
<input type="text" name="name-input" id="name-input" class="name-input">
16+
<button type="submit" class="add-button" id="add-button">Add</button>
17+
</div>
18+
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)