Computer Science, asked by shagun39, 1 year ago

create a web page to display by HTML document

Answers

Answered by mudit11
5
<HTML>
<HEAD> </head>

<body bgcolor= "red" >

Hello World!

</body>

</html>

Make sure: ✓ Save this with .htm or .html extension to run the file.
Answered by lunakrystal
4
The following code is written officially by me in HTML5 and CSS. 
Hope you like it!


<!DOCTYPE html><html>    <head>        <meta charset="utf-8">        <title>my Webpage</title>        <style>            body{                background:rgb(15, 42, 69);                font-family:monospace;                font-weight:bold;                                                            }            p{                color:rgb(148, 150, 161);                font-family:monospace;                font-weight:bold;                            }            h1{                color:rgb(252, 249, 252);            }            a{                color:rgb(148, 150, 161);            }        </style>    </head>    <body>    <h1 id="g-g">    <p align="center"><strong>Fight Song</strong></p>    </h1>   <h3><p align="center"> by Rachael Platten</p></h3>   <p align="center">   Like a small boat,<br>   In the ocean.<br>   Setting big waves,<br>   Into motion.<br>   </p>   <p align="center">   Like how a single word,<br>   can make a heart open.<br>   I might only have one match,<br>   But I can make it an explosion.<br>   </p>   <p align="center">   And all those things I didn't say,<br>   wrecking balls inside my head.<br>   I'll scream them loud tonight,<br>   Can you hear my voice this time.<br>   </p>   <p align="center">   This is my fight song.<br>   Take back my life song.<br>   prove Im all right song.<br>   My power's turned on,<br>   Starting right now,I'll be strong.<br>    I'll say my fight song.<br>   </p>   <p align="center">   And I don't really care nobody else believes,<br>   Cause I still got a lot of fight left in me<br>   </p>   <p align="center">   Losing friends I'm chasing sleep,<br>   Everybody's worried about me.<br>   In too deep,say I'm in too deep<br>   It's been two years and I miss my home.<br>   There's fire burning in my bones.<br>   Still believe,yeah I still believe<br>   </p>    <p align="center">   And all those things I didn't say,<br>   wrecking balls inside my head.<br>   I'll scream them loud tonight,<br>   Can you hear my voice this time.<br>   </p>   <p align="center">   This is my fight song.<br>   Take back my life song.<br>   prove Im all right song.<br>   My power's turned on,<br>   Starting right now,I'll be strong.<br>    I'll say my fight song.<br>   </p>    <p align="center">   And I don't really care nobody else believes,<br>   Cause I still got a lot of fight left in me<br>   <em>yeah,Cause I still got a lot of fight left in me.</em><br>   </p>  <a href=" http://www.azlyrics.com/" >for more song lyrics

   <a href="#g-g">go to the top</a>   </p>                               

    </body></html>
Similar questions