Skip to content

Commit 4a6cd68

Browse files
committed
style: Increase margin between form groups
1 parent 04d8cc1 commit 4a6cd68

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

Form-Controls/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<title>My form exercise</title>
77
<meta name="description" content="" />
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<link rel="stylesheet" href="style.css" />
910
</head>
1011
<body>
1112
<header>
@@ -53,7 +54,7 @@ <h1>Product Pick</h1>
5354
<option value="xxl">XXL</option>
5455
</select>
5556
</div>
56-
<button>submit</button>
57+
<button type="submit">Confirm Order</button>
5758
<!--
5859
checklist:
5960
1. Name: min 2 non-space characters
@@ -66,7 +67,7 @@ <h1>Product Pick</h1>
6667
</main>
6768
<footer>
6869
<!-- change to your name-->
69-
<p>By HOMEWORK SOLUTION</p>
70+
<p>Carolina Maday Villa Huanca</p>
7071
</footer>
7172
</body>
7273
</html>

Form-Controls/style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
body {
2+
background-color: #FFFFE0;
3+
font-family: Arial, sans-serif;
4+
display: block;
5+
margin: 50px 0 0 50px;
6+
padding: 10px 20px 10px 20px;
7+
}
8+
div{
9+
margin-bottom: 20px;
10+
}

0 commit comments

Comments
 (0)