Ways of code writing.

Ways of code writing.

  • By notepad
  • By edittext
  • By VS Code

Using notepad or edittext

Web pages can be developed and altered via competent HTML editors.

For learning HTML, we recommend using a basic text editor, such as Notepad (PC) or TextEdit (Mac).

We assert that using a basic text editor is an effective method of acquiring HTML knowledge.

Adhere to the subsequent instructions to construct your first web page using Notepad or TextEdit.

1.By Notepad (Windows)

System requirments.

windows 8 or advance version

Go to Start Screen  bottem left cornes and click in the box( search web and pc). Type Notepad.and open it.

2.By Edittext (Mac)

Access Finder, navigate to Applications, and select TextEdit.

Additionally, modify certain parameters to ensure the application saves files accurately. Select “Plain Text” under Preferences > Format.

Subsequently, within the “Open and Save” section, choose the checkbox labelled “Display HTML files as HTML code instead of formatted text”.

Subsequently, initiate a new document to insert the code.

3. By VS Code

download and Install VS code From Below link.

Click here to download VS code

We will write here with VS code

<!DOCTYPE html>
<html>
<body>

<h1>First Heading</h1>

<p>First paragraph.</p>

</body>
</html>

Then save this file with name of index and extension name as HTML, index.HTML

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *