Form submission with file upload function

form

Form submission with file upload function.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Form</title>
<link rel="stylesheet" href="form.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style type="text/css">
  body{
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f1f1f1;
}
.doc{
  width: 1000px;
  margin: auto;
  background: white;
  overflow: hidden;
}
header{
  height: 320px;
  background: url(bg.jpg) no-repeat;
  background-color: black;
  background-size: cover;
  color: white;
  overflow: hidden;
}
.h-c{
  text-align: center;
  margin: 112px 0;
}
header img{
  width: 110px;
opacity: 0.7;
}
header h2{
  opacity: 0.7;
margin: 0;
font-size: 30px;
}
.content{
  margin: 30px 60px;
}
.content p{
text-align: justify;
}
.content label {
    display: block;
    font-size: 16px;
    font-weight: 900;
}
.content input[type="text"] {
    width: 400px;
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
    border: 1px solid #cecaca;
    background: #f1f1f1;
    padding: 14px 12px;
    margin: 8px 0;
}
.content input[type="button"] {
    background: black;
    border: none;
    color: white;
    font-size: 18px;
    display: block;
    margin: auto;
    padding: 20px 60px;
    cursor: pointer;
}


</style>
  </head>
  <body>
<div class="doc">
<header>
<div class="h-c">
  <img src="logo.png" alt="">
  <h2>
Learn Programming Languages Easly</h2>
</div>
</header>
<div class="content">
<p>
<strong>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</strong> Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

</p>
<form class="fr" action="index.html" method="post">
  <label for="">First Name</label>
  <input type="text" name="" value=""><br>
  <label for="">Last Name</label>
  <input type="text" name="" value=""><br>
  <label for="">E-mail</label>
  <input type="text" name="" value=""><br>
  <label for="">Edecation Level</label>
  <input type="text" name="" value=""><br>
  <label for="">C.V</label>
  <input type="File" name="" value=""><br>
  <input type="checkbox" name="" value=""><span>I agree All terms and condetion.</span><br>
  <input type="button" name="" value="Send Now">
</form>
</div>
</div>
</body>
</html>