ids and classes in html
<! DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Ids and Classes in HTML </ title > </ head > < body > < h3 > IDs and classes tutorial </ h3 > < div id = "mainBox" class = "redBg blueBorder" > this is mainbox </ div > < span class = "redBg" ></ span > <!-- two elements cant have same id. an element cant have more than one id. two elements can h...