Write HTML Using Notepad++ or TextEdit
Web pages can be created and changed by utilizing proficient HTML editors.Be that as it may, for learning HTML we prescribe a basic text editor like Notepad (PC) or TextEdit (Mac).
We think utilizing a basic text editor is a decent approach to learn HTML.
Take after the four stages beneath to make your first web page with Notepad or TextEdit.
Step 1: Open Notepad++ (PC)
Windows 8 or later:Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad.
Windows 7 or earlier:
Open Start > Programs > Accessories > Notepad
Step 1: Open TextEdit (Mac)
Open Finder > Applications > TextEdit
Also change some preferences to get the application to
save files correctly.
In Preferences > Format >
choose "Plain Text"
Then under "Open and Save", check the box that says "Ignore rich text
commands in HTML files".
Then open a new document to place the code.
Step 2: Write Some HTML
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
0 comments:
Post a Comment