Wednesday, September 10, 2014

Basic Html & CSS

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


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


(Note: this post is designated for beginners).

No comments:

Post a Comment