Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>THIS USING ID DIVISION</title>
- <style type="text/css">
- #top {
- font-size: 36px;
- color: red;
- }
- #middle {
- font-size: 24px;
- }
- #bottom {
- font-size: 12px;
- }
- .title {
- font-weight: bold;
- color: blue;
- }
- </style>
- </head>
- <body>
- <div id="top" class="title">This is the <span class="title">top</span> of the page</div>
- <div id="middle">This is <span class="title">the middle</span> of the page </div>
- <div id="bottom">This is <span class="title">the bottom</span> of the page</div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment