HTML
কী?
HTML হলো ওয়েব ডিজাইনের মূল্ভিত্তি যা
দিয়ে ওয়েব পেইজ তৈরি করা হয়। HTML এর পূর্ন রূপ Hyper Text Markup Language। যা কতগুলো Markup ট্যাগ এর সমষ্টি। HTML কে
(Markup Language) বলা হয়। এই Markup ট্যাগ এর কাজ হল ওয়েব পেইজে বিভিন্ন এলিমেন্ট
কিভাবে প্রদোর্শন করবে সেটা নির্দেশ করা। একটি ওয়েব পেইজে বিভিন্ন এলিমেন্ট যেমন আডিও,
ভিডিও, টেক্সট, ইমেজ, এনিমেশন থাকতে পারে। আর এই এলিমেন্টগুলোই ওয়েব পেইজে কিভাবে প্রদর্শন
করবে তা নির্ধারন করাই হলো Markup ট্যাগ এর কাজ।
যে কোনো টেক্সট এডিটর ব্যবহার করে
HTML ফাইল তৈরি করা যায়। সুধু টেক্সট এর এক্সটেনশন .txt পরিবর্তন করে .html করা হলে
html ফাইল পাওয়া যায়। Text.txt কে Filename.html এ save করতে হবে।
Basic
Structure Of HTML
1. Document type declaration
2. html element
3. descriptive information about the document itself, such as its title, the style sheet(s) it uses, scripts, and other types of “meta” information
4. provide all sorts of information, but in this case, it specifies the character encoding 5. Also in the head is the mandatory title element. 6. Finally, the body element contains everything that we want to show up in the browser window.

0 Comments