Advertisement
Guest User

INDEX

a guest
Mar 15th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Fake News - home</title>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. </head>
  7. <body>
  8. <div>
  9. <h1>Fake News</h1>
  10. <h1>Le bufale più interessanti</h1>
  11. <img title="logo" alt="Il logo del sito" src="logo.png" height="188" width="311"></img>
  12. </div>
  13. <div>
  14. <ul>
  15. <li><a href="index.html">Home</a></li>
  16. <li><a href="utente.html">Il tuo profilo</a></li>
  17. <li><a href="registrazione.html">Registrati</a></li>
  18. </ul>
  19. </div>
  20. <hr/>
  21. <div>
  22. <table>
  23. <tr>
  24. <th>Nome Articolo</th>
  25. <th>Visualizzazioni</th>
  26. <th>Scrittore</th>
  27. </tr>
  28. <tr>
  29. <td>Il caso McGrow</td>
  30. <td>1</td>
  31. <td>Marco Frtittella</td>
  32. </tr>
  33. <tr>
  34. <td>Titolo Clickbait</td>
  35. <td>100000</td>
  36. <td>Signor Scott</td>
  37. </tr>
  38. <tr>
  39. <td>Ricetta Potage le Magnifique</td>
  40. <td>262</td>
  41. <td>Il Gourmet</td>
  42. </tr>
  43. </table>
  44.  
  45. <h5>Lista scrittori recenti</h5>
  46. <!-- lista ordinata -->
  47. <ol>
  48. <li>Marco Frittella</li>
  49. <li>Signor Scott</li>
  50. <li>Il Gourmet</li>
  51. </ol>
  52. <h5>Lista scrittori recenti ma con il puntino</h5>
  53. <!-- lista non ordinata -->
  54. <ul>
  55. <li>Marco Frittella</li>
  56. <li>Signor Scott</li>
  57. <li>Il Gourmet</li>
  58. </ul>
  59. </div>
  60.  
  61. <div>
  62. <form action="signup.php" method="post">
  63. <label for="username">Username:</label>
  64. <input type="text" name="username" id="username" value="Inserisci username">
  65. <br/>
  66. <label for="psw">Password:</label>
  67. <input type="password" name="psw" id="psw">
  68. <br/>
  69. <label for="desc"></label>
  70. <textarea name="desc" id="desc" rows="10" cols="50">Inserisci la descrizione qui</textarea>
  71. <br/>
  72. <input type="submit" value="Invia"></input>
  73. <button type="submit">Invia2</button>
  74. <br/>
  75. <label for="M">Uomo</label>
  76. <input type="radio" name="sesso" value="uomo">
  77. <br/>
  78. <label for="D">Donna</label>
  79. <input type="radio" name="sesso" value="donna">
  80. <br/>
  81. <select>
  82. <option value="0">Attualità</option>
  83. <option value="1">Musica</option>
  84. <option value="2">Cinema</option>
  85. </select>
  86. </form>
  87. </div>
  88. </body>
  89. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement