How do I write this html code
Answers
Answer:
एचटीएमएल वेब पन्नों और वेब आधारित एप बनाने में इस्तेमाल होने वाली एक मार्कअप भाषा है। वेब ब्राउज़र द्वारा किसी वेबसाइट के पन्ने को खोलने पर उसके वेब सर्वर से एचटीएमएल के रूप में दस्तावेज प्राप्त होता है, जिसे वेब ब्राउज़र मल्टीमीडिया वेब पन्ने में बदल देता है।
फ़ॉर्मैट का प्रकार: डॉक्यूमेंट फाइल फॉर्मेट
नया वर्शन: HTML 5.2
Answer:
some points to keep in mind :
1. an html document starts with the html tag.
2. hr is an empty tag. It does not have a closing.
3. the attributes of HR tag are : width, size, color, noshade, align.
Explanation:
<!DOCTYPE HTML>
<head> <title> Html </title> </head>
<hr width=100% size=40% align=left color=yellow>
<hr width="100%" size="40%" align="right" color="blue">
<hr width="100%" size="80%" align="center" color="brown">
<hr width="100%" size="70%" align="center" color="cyan">
<hr width="100%" size="40%" align="center" color="black">
</html>
Hope you'll understand it.
Please mark as brainliest.