Advertisement
Guest User

hello

a guest
May 22nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.73 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Esercizio JS0005 (Codice)</title>
  4.     <script src = "lezione1src.js"></script>
  5.  
  6.   <style type="text/css">
  7.     #immagine{
  8.  
  9.       height:300px;
  10.       weight:600px;
  11.       transform: rotate(90deg);
  12.       display: block;
  13.       margin-left: auto;
  14.       margin-right: auto;
  15.     }
  16.     #niceButton{
  17.       float: left;
  18.       padding: 10px;
  19.       border-radius: 10px;
  20.       -moz-border-radius: 10px;
  21.       -webkit-border-radius: 10px;
  22.     }
  23.   </style>
  24. </head>
  25. <body id = "super">
  26.     <h1 id = "es1">
  27.         CIAOOO!
  28.     </h1>
  29.   <h1 id = "es2">Se mi clicchi ti saluto</h1>
  30.   <img id="immagine" src="IMG_20190217_1838296.jpg"></img>
  31.   <button id="niceButton" type="button" name="button"></button>
  32.  
  33.   <br>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement