Answers for "h1 inline style"

CSS
0

css style all h1 tags

h1 {
  /* add custom styling here */
}
Posted by: Guest on June-12-2021
0

h1 tag inline

h2 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
}

h2, h3 {
  width: 50%;
  height: 60px;
  margin: 0;
  padding: 0;
  display: inline;
}​
Posted by: Guest on October-27-2021
0

how to style a h1 tag in css inline

<head>
    <link rel="stylesheet" href="./index.css">
</head>
Posted by: Guest on October-11-2021

Browse Popular Code Answers by Language