Advertisement
iamos

HTML_Online_02

Feb 10th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.51 KB | None | 0 0
  1. <head>
  2.     <title> Job Application / Audio, Video tag</title>
  3.     <meta charset="utf-8">
  4. </head>
  5. <body>
  6. <!-- page Top -->
  7.     <!-- Given name / Family Name -->
  8.     <!-- Address -->
  9.     <!-- Mobile / Age / Date of Bitrh -->
  10.     <!-- Days Willing to work -->
  11.     <!-- When Available to Start -->
  12.     <!-- Position Applying for Staff (Casual, Full-time / Part-time) -->
  13.     <!-- Education Background -->
  14.     <!-- Skill -->
  15.     <!-- Previous Work Experience -->
  16.     <div>
  17.         <form accept-charset="utf-8">
  18.             <h1>R E S U M E</h1>
  19.             <hr>
  20.             <h4>Personal History</h4>
  21.             Photo : <input type="image" src="http://placehold.it/120x170"/><br>
  22.             Given Name : <input type="text" name="given_name">Family Name  : <input type="text" name="family_name"><br>
  23.             Sex :  <input id="man" type="radio" name="gender" value="m" />
  24.             <label for="man">Male</label>
  25.              <input id="woman" type="radio" name="gender" value="w" />
  26.              <label for="woman">Female</label> <br>
  27.  
  28.             Age : <input type="text" name="age">
  29.             Date of Bitrh : <input type="date" name="birth" ><br>
  30.             Marital     : <input type="radio" name="marital" value="Y">
  31.             <label for="Married">Married</label>
  32.             <input type="radio" name="marital" value="N">
  33.             <label for="Single"> Single</label>
  34.             <hr>
  35.             <h4>Contact</h4>
  36.             Address  : <input type="text" name="address"><br>
  37.             Mobile : <input type="text" name="Mobile" ><br>
  38.             E-mail : <input type="email" name="Email" ><br>
  39.             <hr>
  40.             <h4>About Work</h4>
  41.             Days Willing to work : <select>
  42.                     <option>Once a Week</option>
  43.                     <option>2</option>
  44.                     <option>3</option>
  45.                     <option>4</option>
  46.                     <option>5</option>
  47.                     <option>6</option>
  48.                     <option>EveryDay</option>
  49.                 </select><br>
  50.             When Available to Start : <input type="date" name="avaliable"><br>
  51.             Position Applying for Staff  : <select>
  52.                     <option>Full-time</option>
  53.                     <option>Part-time</option>
  54.                     <option>Casual</option>
  55.                 </select><br>
  56.             <hr>
  57.             Previous Work Experience : <textarea name="work_exp" cols="50" rows="5"></textarea><br>
  58.             <input type="submit" name="submit" value="submit">  
  59.             <input type="reset" name="reset" value="reset">
  60.             <hr>
  61.         </form>
  62.     </div>
  63. <!-- page bottom -->
  64.     <div>
  65.         <audio controls = "controls" autoplay = "ture" preload="true">
  66.             <source src="m1.mp3" type="audio/mpeg">
  67.             <source src="m2.mp3" type="audio/mpeg">
  68.         </audio><br>
  69.         <video width="320" height="240" controls>
  70.             <source src="http://youtu.be/FKkejo2dMV4" type="video/mp4">
  71.             <!-- <source src="movie.ogg" type="video/ogg"> -->
  72.         </video>
  73.     </div>
  74. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement