Advertisement
shopnilSS

Class one html

Jul 1st, 2021
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Document</title>
  5. <style>
  6. .newaz {
  7. color: red
  8. }
  9. .puja {
  10. background-color: black
  11. }
  12. .zahid {
  13. color: green
  14. }
  15. .mairan {
  16. background-color: green
  17. }
  18. #newaz {
  19. color: red
  20. }
  21. #zahid {
  22. color: green
  23. }
  24. #puja {
  25. background-color: black
  26. }
  27. #mairan {
  28. background-color: green
  29. }
  30. .image {
  31. height: 250px;
  32. width: 250px;
  33. }
  34.  
  35. </style>
  36. </head>
  37. <body>
  38. <!--header tag (h1 - h6)-->
  39. <!-- <h1>I am from header 1</h1>
  40. <h2>I am from header 2</h2>
  41. <h3>I am from header 3</h3>
  42. <h4>I am from header 4</h4>
  43. <h5>I am from header 5</h5>
  44. <h6>I am from header 6</h6>
  45.  
  46. <!--paragraph tag p-->
  47. <!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facilis temporibus voluptates expedita dolore tenetur distinctio, adipisci nesciunt doloribus aut porro minima aliquam numquam, ipsam id debitis sit. Fugiat, corrupti rem?</p> -->
  48.  
  49. <!--bold tag b-->
  50. <!-- <p><b>Lorem ipsum dolor sit amet consectetur, adipisicing elit. <b>Vero</b> ad blanditiis maiores minus eveniet natus,
  51. excepturi iure unde distinctio eligendi eos consequuntur doloremque atque praesentium nemo expedita voluptate temporibus
  52. laboriosam!</b></p> -->
  53.  
  54. <!-- <b>Hello</b> --> -->
  55.  
  56. <!--strong tag -->
  57. <!-- <p><strong>Lorem</strong> ipsum dolor sit amet consectetur adipisicing elit. Id excepturi architecto fugit minima rerum similique est optio possimus libero animi inventore iure quae adipisci error perferendis, ratione et modi repellat!</p> -->
  58.  
  59. <!-- <p>5 <sub>4</sub></p>
  60. <p><del>previous price 200 tk</del></p>
  61. <p>current price 500 tk</p> -->
  62. <!-- <h1><mark>Hello</mark></h1 -->
  63. <!-- <img src="./img/1.jpg" alt="image one"> -->
  64. <!-- <a href="https://www.facebook.com/sshopnil1/" target = "_blank">hello</a> -->
  65. <!-- css -->
  66. <!-- 1. inline css
  67. 2. external css
  68. 3. internal css -->
  69.  
  70. <!-- inline css -->
  71. <!-- <h1 style="color: white; background-color: black; text-align: left; font-size: 195%;">Lorem, ipsum dolor</h1> -->
  72.  
  73. <!-- internal css-->
  74. <!-- class and id-->
  75. <!-- (.) = class (#) = id-->
  76. <h1 id = "newaz" class = "mairan" >Lorem, ipsum dolor</h1>
  77. <h1 id = "zahid" class = "puja">I am header one</h1>
  78. <img src="./img/1.jpg" alt="image one" class = "image">
  79.  
  80. </body>
  81. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement