+ 1
When using Align, how do I do it as a heading
<h1>blah blah blah<h1>
3 Answers
+ 4
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1 align="Center">Test</h1>
</body>
</html>
+ 3
Head tag useable two place.
First in HTML.
<h1 align="center"></h1>
Second in CSS.
h1{
text-align: center;
}
i hope you understand.
0
Thank you.