My school assignment involves creating a webpage. Here are the initial design concepts I have come up with: Click here for image
This is what I have implemented so far: Click here for image What else do I need to add?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
#box1{
box-sizing: content-box; width:300px; height:200px; padding:150px; border: 1px solid;
</style>
</head>
<body>
<div id="box1" margin>
<form action="must.txt">
First Name :<input type="text" name="fname"><br>
Last Name : <input type="text" name="lname" ><br>
Password : <input type="password" name="password" ><br>
Email : <input type="email" name="email" ><Br>
Birthday : <input type="date" name="Birthday" > <br>
Gender : <input type="radio" name="Gender" value="Male">Male
<input type="radio" name="Gender" value="Female">Female
</form>
</div>