Skip to content

Commit 08ab0f9

Browse files
committed
HTML File
1 parent 1299fa1 commit 08ab0f9

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

index.html

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!doctype html>
2+
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<base href="/">
6+
<title></title>
7+
8+
<meta name="viewport" content="width=device-width">
9+
10+
<style>
11+
12+
.space {
13+
margin-bottom: 25px;
14+
}
15+
16+
#button {
17+
min-width: 100px;
18+
padding: 15px 20px;
19+
background-color: purple;
20+
border: 1px solid black;
21+
border-radius: 15px;
22+
color: white;
23+
font-size: 16px;
24+
}
25+
26+
#form {
27+
font-size: 16px;
28+
}
29+
30+
#form div {
31+
margin-bottom: 10px;
32+
}
33+
34+
label {
35+
width: 90px;
36+
display: inline-block;
37+
}
38+
39+
</style>
40+
41+
<body>
42+
<div class="container">
43+
<button id="button">This is a button</button>
44+
<div class="space"></div>
45+
<form id="form">
46+
<div>
47+
<label>Item 1</label>
48+
<input type="text" />
49+
</div>
50+
<div>
51+
<label>Item 2</label>
52+
<input type="text" />
53+
</div>
54+
</form>
55+
56+
</div>
57+
</body>
58+
59+
</html>

0 commit comments

Comments
 (0)