Please login to start chat

ICT Solutions 2021-11-20 12:50:05

javascript in html

When we design the website, we need to use css and html together. html, css and javascript are the most important languages for those who are trying to get in front-end web development field. The following is the very basic sample of html and css.

Adding script between <head> and </head>

<html>
<head>
<title>TNW (Web Service & ICT Solutions)</title>
<script>
var txt = "<b>Welcome to TNW (Web Service & ICT Solutions)!</b><br /><br /> TNW provides the best ICT Solutions for your business by the reasonable price.";
function myFun(){
document.getElementById("demo").innerHTML = txt;
}
</script>
</head>
<body>
<p id = "demo">TNW</p>
<button type = "button" onclick = "myFun()">Click Here</button>
</body>
</html>

Open notepad or text editor and write the above codes. Then, save it as test.html and try to open by one of the browsers on your computer.

 
Adding Script between <body> and </body>
<html>
<head>
<title>TNW (Web Service & ICT Solutions)</title>
</head>
<body>
<p id = "demo">TNW</p>
<button type = "button" onclick = "myFun()">Click Here</button>
<script>
var txt = "<b>Welcome to TNW (Web Service & ICT Solutions)!</b><br /><br /> TNW provides the best ICT Solutions for your business by the reasonable price.";
function myFun(){
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>

Open notepad or text editor and write the above codes. Then, save it as test.html and try to open by one of the browsers on your computer.

...read more


ICT Solutions 2021-11-20 04:00:36

css in html

When we design the website, we need to use css and html together. html, css and javascript are the most important languages for those who are trying to get in front-end web development field. The following is the very basic sample of html and css.

<!DOCTYPE html>
<html>
<head>
<title>T N W</title>
<style type="text/css">
p{color:red; background:black; width: 200 px;}
</style>
</head>
<body>
<p>Hello, This is HTML Testing!</p>
</body>
</html>

...read more


ICT Solutions 2020-06-05 03:05:46

html links

<!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>

...read more


ICT Solutions 2020-06-04 10:40:10

Start embedding css in 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 and you will find it working.

...read more


ICT Solutions 2020-06-03 10:31:53

HTML Development Environments

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).

...read more


ICT Solutions 2020-06-03 09:39:03

What is HTML

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 be firstly learned for those who start to learn web programming.

...read more


Available Services
Download Android Application