We have divided the html tutorial into two parts for your learning convenience. First read the basics well then watch the basic video.
Then read the advance thoroughly and watch the advance video. You can learn basic in three days and advanced in seven days.
You can learn the complete course in 10 days.
আপনার শেখার সুবিধার্থে আমরা html tutorial কে দুটি ভাগে বিভক্ত করেছি।
প্রথমে আপনারা বেসিক ভালোভাবে পড়ুন তারপর বেসিকের ভিডিওটি দেখুন। তারপর এডভান্স ভালোভাবে পড়ুন এবং এডভান্স ভিডিওটি দেখুন।
বেসিক আপনারা তিনদিনে শিখতে পারবেন এবং এডভান্স সাতদিনে শিখতে পারবেন।
আপনি ১০ দিনে সম্পূর্ণ কোর্সটি শিখতে পারবেন।
HTML Basic Day-1:
What is HTML?
HTML (Hyper Text Markup Language) describes the structure of a Web page
This is simple HTML Document
< DOCTYPE html >
< html >
< head >
< title >Page Title < / title >
< / head >
< body >
< h1 > My First Heading < / h1 >
< p > My first paragraph.< / p >
</ body >
< / html >
Explained:
The < DOCTYPE html > declaration defines that this document is an HTML5 document
The < html > element is the root element of an HTML page
The < head > element contains meta information about the HTML page
The < title > element specifies a title for the HTML page (which is shown in the browser’s title bar or in the page’s tab)
The < body > element defines the document’s body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
The < h1 > element defines a large heading
The < p > element defines a paragraph
HTML Editor:
Step One:
PC: Windows- > Open Start > Programs > Accessories > Notepad Windows-8 or earlier > Open Start Screen > Type Notepad Mac: Open Finder > Applications > TextEdit.
Step Two:
The write your HTML Code in Notepad
Step Three:
Save the file on your computer. Select File > Save as in the Notepad
Name the file “name.html” and set the encoding to UTF-8
Step Four:
Now double click on the file and choose your browser. Now you can see HTML Code result on your browsers.