<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Basic controls: Task 3</title>
<style>
body {
background-color: #fff;
color: #333;
font: 1em / 1.4 Helvetica Neue, Helvetica, Arial, sans-serif;
padding: 1em;
margin: 0;
}
* {
box-sizing: border-box;
}
</style>
</head>
<body>
<form>
<ul>
<li>
<label for="gallery-img">Choose gallery images to upload</label>
<input type="file"
id="gallery-img" name="gallery-img"
accept="image/png, image/jpeg"
multiple />
</li>
</ul>
<button>Submit</button>
</form>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.