Posts

Showing posts from April, 2020
Image
HTML Tutorial #1: Create your first Static web page. What is HTML? HTML stands for Hyper Text Markup Language, which is the most widely used language on Web to develop web pages. Basically, As its name suggests, HTML is a Markup Language which means you use HTML to simply "mark-up" a text document with tags that tell a Web browser how to structure it to display.  Here is a easiest way to create a simple web page. You do not need any special software or web server to this tutorial. I recommend that you start with notepad for writing and editing HTML files. STEP: 1 :  Press window button+R, write NOTEPAD and simply click OK button. STEP: 2 Type in the Notepad:            <!DOCTYPE html>            <html>            <head>            <title>First static page.</title>     ...