Advertisement
Guest User

html1

a guest
Nov 23rd, 2015
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Movie review</title>
  6.  
  7. <link href="css.css" type=text/css rel="stylesheet"/>
  8.  
  9. </head>
  10. <body>
  11.  
  12.  
  13. <div class="container">
  14.  
  15. <h1 class="headline">Movie reviews</h1>
  16.  
  17. <div class="Homemenu">
  18. <ul class="menu">
  19. <li><a href="#contact">Contact</a></li>
  20. <li><a href="about.html">About</a></li>
  21.  
  22. <li> <form id="formbox">
  23. <input type="text" placeholder="Search here" id="searchInput" name="searchInput"/>
  24. </form>
  25. </li>
  26. </ul>
  27. </div>
  28.  
  29. <!--<input id="search" type="text" placeholder="search here">-->
  30.  
  31.  
  32.  
  33.  
  34. <div class="tools">
  35. <button id="toggleFormular">Write review</button>
  36. </div>
  37.  
  38. <!--tilføj review -->
  39. <div id="formular">
  40. <form>
  41. Title <br>
  42. <input id="title" type="text" placeholder="Add text"> <br>
  43. Image <br>
  44. <input id="image" type="text" placeholder="Put image here"> <br>
  45. Review <br>
  46. <textarea id="review" rows="10" cols="60"></textarea> <br>
  47. <input type="submit" value="Add comment">
  48. </form>
  49. </div>
  50.  
  51. <div class="posts">
  52. <div id="post">
  53. <article>
  54. <h1 class="header"></h1>
  55. <h5 class="byline"></h5>
  56. <div class="text">
  57. <h5></h5>
  58. <p class="date"></p>
  59. <p class="review"></p>
  60. </div>
  61. <img id="image" src="" alt="">
  62. </article>
  63. </div>
  64. </div>
  65.  
  66.  
  67. <p>Did you get the information that you wanted from this site?</p>
  68.  
  69. <form action="http://www.example.com/profile.php">
  70. <br />
  71.  
  72. <input type="image" src="images/like.jpg" width="100" height="50" />
  73. <input type="image" src="images/dislike.jpg" width="100" height="50" />
  74.  
  75.  
  76. </form>
  77.  
  78. <iframe width="420" height="315"
  79. src="http://www.youtube.com/embed/7GqClqvlObY?autoplay=0">
  80. </iframe>
  81.  
  82. <iframe width="420" height="315"
  83. src="http://www.youtube.com/embed/ShIAH_G-Iuw?autoplay=0">
  84. </iframe>
  85.  
  86. <iframe width="420" height="315"
  87. src="http://www.youtube.com/embed/n-7K_OjsDCQ?autoplay=0">
  88. </iframe>
  89.  
  90.  
  91.  
  92. <br />
  93.  
  94. <div class="mail">
  95. <ul class="contactList">
  96. <li id="contact"> Contact: </li>
  97. <li>Sofie - <a href="mailto:Sofie@hotmail.com">Sofie@hotmail.com</a></li>
  98. <li>Jakob - <a href="mailto:Jakob@hotmail.com">Jakob@hotmail.com</a></li>
  99. <li>Frederikke - <a href="mailto:Frederikke@hotmail.com">Frederikke@hotmail.com</a></li>
  100. </ul>
  101. </div>
  102. </div>
  103.  
  104. <script src="http://code.jquery.com/jquery-2.1.4.min.js"> </script>
  105. <script type="text/javascript" src="JavaScript.js"> </script>
  106. </body>
  107. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement