Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!--
- Create a Web page that looks like this PowerPoint slide
- (100% accuracy is not required):
- -->
- <html>
- <head>
- <title>PowerPoint</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- body{
- font-family:Calibri;
- }
- div {
- margin:20px auto;
- width:850px;
- //background: red;
- }
- .text {
- position: absolute;
- top:10px;
- left:540px;
- width:800px;
- padding:10px;
- }
- h1{
- color:#f3cd60;
- font-weight: none;
- margin-bottom:10px;
- }
- h2{
- color:#f3cd60;
- font-weight: none;
- }
- li{
- color:#f3be60;
- }
- span{
- color: white;
- }
- .box{
- margin-left:60px;
- width:715px;
- padding:5px;
- background: #747065;
- padding-left: 5px;
- opacity: 0.5;
- border:1px solid yellow;
- margin-top:-10px;
- margin-bottom:10px;
- }
- .box div p{
- color:#fbeec9;
- margin:0;
- }
- .box div{
- margin:0;
- }
- ul{
- margin-top:10px;
- margin-bottom:10px;
- }
- </style>
- </head>
- <body>
- <div >
- <img src="power.png">
- <div class = "text">
- <h1>Headings and Paragraphs</h1>
- <ul type = "square">
- <li><h2><span>Heading Tags:</span> <h1> <span>-</span> </h6></h2></li>
- </ul>
- <div class="box">
- <div>
- <p> <h1> Heading 1</h1><br/>
- <h2> Sub heading 2 </h2><br/>
- <h3> Sub heading 3 </h3></p>
- </div>
- </div>
- <ul type = "square">
- <li><h2><span>Paragraph Tags:</span> <p> <span></h2></li>
- </ul>
- <div class="box">
- <div>
- <p> <p> This is my first paragraph </p></p>
- <p><p> This is my second paragraph </p></p>
- </div>
- </div>
- <ul type = "square">
- <li><h2><span>Sections:</span> <div> <span>and</span> </span></h2></li>
- </ul>
- <div class="box">
- <div>
- <p> <div style="background: skyblue; " ><br/>
-    This is div<br/>
- <div ></p>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement