HTML कोड: H1 Basic CSS
HTML
<h1>Job-Point</h1>CSS
h1 {color: Green;
font-size: 35px;
font-family: Arial, sans-serif;
text-align: center;
margin: 20px 0;
padding: 10px;
text-transform: uppercase;
border-bottom: 2px solid Green;
}
HTML
<p>This is my first HTML webpage. I'm learning web development!</p>CSS
p {color: Green;
font-size: 25px;
line-height: 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: justify;
margin: 15px 0;
padding: 5px 10px;
word-spacing: 1px;
}