Can anyone help me figure out why there is automatic blank space between two headlines in HTML? I need to remove the space marked by the red arrows.
https://i.sstatic.net/RPr3Z.jpg
My HTML Code:
<body>
<h1>Der Gecko<h1>
<h2>(lat. Gekko gecko)<h2>
<body>
My CSS Styles:
h1 {
opacity: 0.5;
background-color: #9B26AF;
color: #50ffffff;
font-size: 175;
}
H2 {
opacity: 0.5;
background-color: #68EFAD;
color: black;
font-size: 50;
}