You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
782 B
30 lines
782 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width"/>
|
|
<title>Center alignment</title>
|
|
<style>
|
|
.box-center {
|
|
margin: auto;
|
|
width: 50%;
|
|
border: 3px solid green;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.img-center {
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>Center alignment</h2>
|
|
<div class="box-center">
|
|
Hello World
|
|
</div>
|
|
<p></p>
|
|
<img class="img-center" src="https://images.unsplash.com/photo-1718795903419-2bc5bba08d2f?w=200&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwxMXx8fGVufDB8fHx8fA%3D%3D">
|
|
</body>
|
|
</html> |