Answers for "css h1 style"

CSS
9

how to write css in html

<p style="color: blue; font-size: 46px;">
Posted by: Guest on May-01-2020
2

how to add css to html

<link rel="stylesheet" href="hi.css">
Posted by: Guest on July-01-2020
2

html h1 size

h1  =>    32px    (2em)
h2  =>    24px  (1.5em)
h3  =>  20.8px  (1.3em)
h4  =>    16px    (1em)
h5  =>  12.8px  (0.8em)
h6  =>  11.2px  (0.7em)
Posted by: Guest on July-26-2020
0

css style all h1 tags

h1 {
  /* add custom styling here */
}
Posted by: Guest on June-12-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
-1

default CSS settings for h1 tag

h1 { 
  display: block;
  font-size: 2em;
  margin-top: 0.67em;

      margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;

      font-weight: bold;
}
Posted by: Guest on June-06-2021

Browse Popular Code Answers by Language