Advertisement
Guest User

html

a guest
Feb 25th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 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.0">
  6. <title>TecBlog - O seu blog de tecnologia</title>
  7. <link rel="stylesheet" href="css/estilo.css">
  8. </head>
  9. <body>
  10. <div id="area-cabecalho">
  11.  
  12. <div id="area-logo">
  13. <h1>Tec<span class="branco">Blog</span></h1>
  14. </div>
  15.  
  16. <div id="area-menu">
  17. <a href="index.html">Home</a>
  18. <a href="jogos.html">Jogos</a>
  19. <a href="celulares.html">Celulares</a>
  20. <a href="informatica.html">Informática</a>
  21. <a href="eletronicos.html">Eletrônicos</a>
  22. </div>
  23.  
  24. </div>
  25. <div id="area-principal">
  26. <div id="area-postagens">
  27. <!--abertura postagem-->
  28. <div class="postagem">
  29. <h2>Título da postagem 1</h2>
  30. <span class="data-postagem">postado em 20 março 2022</span>
  31. <img width="620px" src="imagens/imagem (1).jpg" alt="">
  32. <p>
  33. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Atque, autem? Ipsam reiciendis doloremque magni est enim nisi totam consequatur ab asperiores et amet, sed adipisci, quae nihil laudantium, repellendus eius dolore eaque officiis perferendis ducimus!
  34. </p><br>
  35. <a href="">Leia mais</a>
  36. <!--fechamento postagem-->
  37. </div>
  38. </div>
  39. <div id="area-lateral">
  40. Menu lateral
  41. </div>
  42. <div id="rodape">
  43. <strong>Todos os direitos reservados</strong>
  44. </div>
  45. </div>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement