Daryan997

homework - web

Sep 13th, 2020
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.13 KB | None | 0 0
  1. <!-- Bashi yakam (index.html) -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>Naw</title>
  7. </head>
  8. <body>
  9.     <h1>Absolute URLs</h1>
  10.     <p><a href="https://www.facebook.com/">Facebook</a></p>
  11.     <p><a href="https://www.google.com/">Google</a></p>
  12.     <h1>Relative URLs</h1>
  13.     <p><a href="page2.html">HTML Images</a></p>
  14.     <h1>Form</h1>
  15.     <form>
  16.         Enter a date before 1980-01-01:<input type="text" id=""><br><br>
  17.         Enter a date after 2000-01-01:<input type="text" id=""><br><br>
  18.         Quantity (between 1 to 5):<select>
  19.             <option value=""></option>
  20.             <option value="1">1</option>
  21.             <option value="2">2</option>
  22.             <option value="3">3</option>
  23.             <option value="4">4</option>
  24.             <option value="5">5</option>
  25.         </select><br><br>
  26.         <input type="submit" value="Submit">
  27.     </form>
  28. </body>
  29. </html>
  30.  
  31. <!-- Bashi dwam (page2.html)-->
  32.  
  33. <!DOCTYPE html>
  34. <html>
  35. <head>
  36.     <meta charset="UTF-8">
  37.     <title>HTML Image</title>
  38. </head>
  39. <body>
  40.     <a href="rasm.png"><img src="rasm.png" alt=""></a>
  41. </body>
  42. </html>
Add Comment
Please, Sign In to add comment