javascript in html
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…
css in html
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…
html links
Category : html tutorials
<!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>
Start embedding css in html
Category : html tutorials
<!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 Environments
Category : html tutorials
HTML development can be done in notepad that comes along with Windows, text editors, IDE Software and WYSIWYG (What You See Is What You Get).
What is HTML
Category : html tutorials
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…