How to design web page using html Do you want to create a website? We will guide you to design a web page using Html in 10 minutes. You need to have a notepad / TextPad on your computer. Let's learn about designing of web page using HTML with the following steps:-. Steps to be followed:- Step 1: Open Notepad by clicking Start Button -> Type Notepad and Open Notepad from there. Step 2 : Then you have to write HTML tags in that. HTML stands for Hypertext Markup Language which means a text which contains hyperlinks, markup stands for a set of symbols like <> and language which our browser understands. The webpage contains two parts:- Head Title of the Webpage Body It contains content of the webpage i.e. text, images, videos, etc. So we have to write the following commands to design a simple website using HTML <html> <head> <title>Give your title here</title> </head> <body> Your content here </body> </html> Now yo...