0% found this document useful (0 votes)
25 views1 page

P 1 Fixed Layout

Uploaded by

Murali Vijay
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views1 page

P 1 Fixed Layout

Uploaded by

Murali Vijay
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE HTML>
<html>
<head>
<style>
* {
box-sizing: border-box;
}
.wrapper {
margin-left:100%;
margin-right: 10%;
}
.header {
text-align: center;
background-color: red;
padding: 20px;
color: black;
}
.main {
padding: 20px;
background-color: lightcoral;
color: Balck;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="header">
<h1>My Website</h1>
</div>
<div class="main">
<h2>Fixed Layout</h2>
<p>This is a fixed layout example.</p>
</div>
</div>
</body>
</html>

You might also like