seen the HTML and CSS is used by website designers mostly but if your having some blog and in that
you want to change the code or the theme of your from scratch then you should know what is HTML
what is the CSS and after words the javascript and the Jquery this 2 thing are very usefull and we can do anything through this like javascript and jquery.
HTML
basically HTML is a hyper text make-up language .
in that we use tags to code anything on the webpage and the output of this HTML is seen only on the webpage means in web browsers
so first step is to step up the basic html tags
<html>
<head>
here you can type the scripts , css or any thing else and note that what ever you write in the head tags it will not be seen on the webpage
</head>
<body>
here you can write anything like the table tages the php script then anything if you any single word it can be seen on the webpage
</body>
</html>