<html lang="en">
  <head>
    <meta charset="utf-8"/>
    <title>Basic controls: Task 3</title>

  </head>

  <body>
    <form>
        <ul>
          <li>
            <label for="gallery-img">Choose gallery images to upload</label>
            <input type="file" id="gallery-img" name="file" accept="image/jpg, image/png" multiple>
          </li>
        </ul>
      <button>Submit</button>
    </form>
  </body>

</html>
body {
  background-color: #fff;
  color: #333;
  font: 1em / 1.4 Helvetica Neue, Helvetica, Arial, sans-serif;
  padding: 1em;
  margin: 0;
}

* {
  box-sizing: border-box;
}

/*My work from here*/
ul {
  padding-left: 0;
  list-style: none;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.