HTML ( LIST , TABLE & FORMS )
LIST , COMMAND <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HTML LIST</title> </head> <body> <ul> <ul type="circle"> type , command =" circle" use for every line of the list <li>Home</li> <li>About</li> <li>Services</li> <li>Contacts</li> </ul> <oll> <ol type="I"> if type="capital i " resulted romin counting display on every line <li>Home</li> <li>About</li> <li>Services</li> ...