This content originally appeared on DEV Community and was authored by Angwyn-Developer
if you are new to coding, HTML is the right code for you. because html is very easy and suitable for beginners. first of all the application you need is a code editor, suitable code editor for html is notepad++ (for me, code editor is not necessarily the same, you can use: Notepad, Sublime, Atom, etc) if you want to use notepad++ go to this website : https://notepad-plus-plus.org/downloads/
OK.if you already download the Code Editor, Open the code editor, and Click File > New Or "Ctrl + N" And Save or Save As, Then rename it "index.html" ,so the text file can be a html file, after that u can type your first code :)
<html> <head> </head> <body> </body> </html>
<html> element to know that the file is html, this element must be on the first line.
<head> element for the title element, the title element is useful for changing the name of your website website
Example:
<html> <head> <title>This Is TITLE.</title> </head> <body> </body> </html>
if you write the code correctly then the browser title is "This is TITLE".
Header
the header element is useful for displaying jumbo/large letters, the header element has many font sizes, there are <h1>, <h2>, <h3>, to <h6>
Code:
<html> <head> <title>Header Tutorial</title> </head> <body> <h1>This is Header 1 </h1> </body> </html>
if you typed the code correctly then the result is like this...
To be continued...
See you in part 2...
This content originally appeared on DEV Community and was authored by Angwyn-Developer
Angwyn-Developer | Sciencx (2021-06-05T04:55:30+00:00) New At HTML? Watch this if you are new at HTML.. Retrieved from https://www.scien.cx/2021/06/05/new-at-html-watch-this-if-you-are-new-at-html/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.