Advertisement
WhiteofNotGrey

Untitled

May 13th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.22 KB | None | 0 0
  1.     <header>
  2.         <div class="container"><img src="../../../Desktop/kfc.jpg" alt="Welcome to the website" width="177" height="53" class="logo">
  3.           <nav class="firstnav">
  4.             <ul>
  5.                 <li><a href="#">Home</a></li>
  6.               <li><a href="#">Meals</a></li>
  7.                 <li><a href="#">About</a></li>
  8.           </ul>
  9.          </nav>
  10.          
  11.       </div>
  12.    </header>
  13.    <div class="welcometowebsite">
  14.    <h1>Welcome</h1>
  15.    <img src="../../../Desktop/feedback-1.jpg" alt="Image" width="1000" height="400">
  16.    <p>Got a comment? Tell it to us here!</p>
  17.    </div>
  18.    
  19.    <form class="form">
  20.             <h1>Contact us</h1>
  21.             <p>Name: <input type="text" name="Name" placeholder="Name" required oninvalid="this.setCustomValidity('Please add your name here')"></p>
  22.             <p>Email: <input type="text" name="Name" placeholder="Email" required oninvalid="this.setCustomValidity('Please add your email here')"></p>
  23.             <input type = "radio" name="Gender" value="male" id="Gender_0" />Male<label><input type="radio" name="Gender" value="female" id="Gender_1" required/>Female</label>
  24.            
  25.             <p>How would you rate our product?</p>
  26. <label><input type="checkbox" name="ITSkills[]" value="0 stars" id="ITSkills_0" />&nbsp;1</label>
  27. <br />
  28. <label><input type="checkbox" name="ITSkills[]" value="1 stars" id="ITSkills_1" />&nbsp;2</label>
  29. <br />
  30. <label><input type="checkbox" name="ITSkills[]" value="1 stars" id="ITSkills_1" />&nbsp;3</label>
  31. <br />
  32. <label><input type="checkbox" name="ITSkills[]" value="1 stars" id="ITSkills_1" />&nbsp;4</label>
  33. <br />
  34. <label><input type="checkbox" name="ITSkills[]" value="1 stars" id="ITSkills_1" />&nbsp;5</label>
  35. <br />
  36. <p>Please leave your message here:</p>
  37. <textarea name="Comments" cols="35" rows="6" wrap="soft" required oninvalid="this.setCustomValidity('Please leave your comment here')"/></textarea>
  38. <br />
  39.  
  40.             <input type="submit">
  41.             <input type="reset">
  42.             </form>
  43.             <br>
  44.             <br>
  45.             <br>
  46.             <footer>         
  47.             <div class="wrapper">
  48.                 <h1>Copyright KFC 2019</h1>
  49.                 </nav>
  50.             </div>      
  51.             </div>
  52.             </footer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement