Horje

How to create HTML <center> Tag with CSS

Here is an example with CSS.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<head>
<style>
h1 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<div>This is a div.</div>

</body>
</html>

Output should be:

How to create HTML <center> Tag with CSS




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin