Category : html tutorials
When we design the website, we need to use css and html together. html, css and javascript are the most important languages for those…
<!DOCTYPE html> <html> <head> <title>TNW (Web Service & ICT Solutions)</title> </head> <body> <p><a href = "https://tnwict.com/index.php?view=category&id=8">Computer Service</a></p> <p><a href = "https://tnwict.com/index.php?view=category&id=11">Networking Service</a></p> </body> </html>
<!DOCTYPE html><html><head><title>TNW (Web Service & ICT Solutions)</title><style>p{color: red;font-weight: bold;}</style></head><body><p>Page 1</p><p>Page 2</p></body></html> Write the above codes and save it as test.html in somewhere. Try to open that file by double clicking…
HTML development can be done in notepad that comes along with Windows, text editors, Read more
HTML is Hypertext Markup Language. It is a standard markup language. It describes the structure of the web page and defines the contents. It is a language should…