Steps to Create an HTML Script using Notepad
If you are really interested to learn or test a HTML script, then here are the steps. There are plenty of tools to create webpages using HTML codes. But I am going to give you the most simple tool to learn HTML.The tool, you will need to use a text editor like “Notepad (for Windows).”
Steps :
- Open Notepad
- Create a New Document (copy and paste the code given below)
- Save File in HTML
- View the saved File in a Web browser
For Scrolling (Right to Left)
Here <marquee> code is used to move a text from right to left direction.
The Output
The Code
<html>
<body>
<marquee>Web of Online Resources. A marquee HTML code to scroll from right to left.</marquee>
</body>
</html>
For Scrolling (Top to Bottom)
Here, code <marquee behavior> is used to move a text from Top to Bottom direction.
The Output
The Code
<html>
<body>
<marquee behavior="scroll" direction="down">Web of Online Resources. A marquee HTML code to scroll from Top to Bottom.</marquee>
</body>
</html>
For Scrolling (Bottom to Top)
Here, code <marquee behavior> is used to move a text from Bottom to Top direction.
The Output
The Code
<html>
<body>
<marquee behavior="scroll" direction="up">Web of Online Resources. A marquee HTML code to scroll from bottom to top.</marquee>
</body>
</html>