Advertisement
adaxx11

Untitled

May 22nd, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="icon" href="https://glitch.com/favicon.ico" />
  7.  
  8. <title>Hello World!</title>
  9.  
  10. <!-- meta tags for SEO and social sharing -->
  11. <link rel="canonical" href="https://glitch-hello-website.glitch.me/" />
  12. <meta name="description" content="A simple website, built with Glitch. Remix it to get your own." />
  13. <meta name="robots" content="index,follow" />
  14. <meta property="og:title" content="Hello World!" />
  15. <meta property="og:type" content="article" />
  16. <meta property="og:url" content="https://glitch-hello-website.glitch.me/" />
  17. <meta property="og:description" content="A simple website, built with Glitch. Remix it to get your own." />
  18. <meta property="og:image" content="https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2Fhello-website-social.png?v=1616712748147" />
  19. <meta name="twitter:card" content="summary" />
  20.  
  21. <!-- import the webpage's stylesheet -->
  22. <link rel="stylesheet" href="/style.css" />
  23.  
  24. <!-- import the webpage's javascript file -->
  25. <script src="/script.js" defer></script>
  26. </head>
  27. <body>
  28. <!-- the wrapper and content divs set margins and positioning -->
  29. <div class="wrapper">
  30. <div class="content" role="main">
  31. <!-- this is the start of content for our page -->
  32. <h1 class="title">Hello World!</h1>
  33. <img
  34. src="https://cdn.glitch.com/a9975ea6-8949-4bab-addb-8a95021dc2da%2Fillustration.svg?v=1618177344016"
  35. class="illustration"
  36. alt="Editor illustration"
  37. />
  38. </div>
  39. </div>
  40. <!-- the footer holds our remix button — you can use it for structure or cut it out ✂ -->
  41. <footer class="footer">
  42. <div class="links"></div>
  43. <a
  44. class="btn--remix"
  45. target="_top"
  46. href="https://glitch.com/edit/#!/remix/glitch-hello-website"
  47. >
  48. <img
  49. src="https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FLogo_Color.svg?v=1618199565140"
  50. alt=""
  51. />
  52. Remix on Glitch
  53. </a>
  54. </footer>
  55. </body>
  56. </html>
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement