Class 3

Jun 29, 2020 - Mon


View On Github Download class file

tag

optional tag for table

non-semantic tag in html

attributes

type of style

<h1 style="color: red" >Hello world </h1>
<style>
  h1 {
    color: red;
  }
</style>
<link rel="stylesheet" href="style.css">

css selector

h1 {
  color: red;
}

here,
h1 - tag
color - property
red - value

id selector start with #

#first-heading {
  color: red;
}

class selector start with .

.hiru-sir-fav-color {
  color: red;
}
« Class 2 Class 4 »