Html

Useful HTML elements Every Web Developer Should Know

Useful HTML elements Every Web Developer Should Know

list <ol> and <ul> there is an ordered list and an unordered list Unordered HTML List  <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> Ordered HTML List <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <table> <table> <thead>...
266 views
HTML Introduction

HTML Introduction

HTML is the standard markup language for creating Web pages. HTML consists of a series of elements. HTML elements tell the browser how to display the content. Example Explained The <!DOCTYPE html> declaration defines...
241 views