$type=slider$count=4$ico=1$cate=0$rm=0$sn=0$cm=0$show=home$meta=hide

CSS - Styling your Website

Learn how to style your website through CSS.
CSS – Cascading Style Sheets is a style sheet language used for describing the look and formatting of a document written in a markup language. A CSS is a flexible way to style your pages. In this way you can concentrate on styling and forget about the contents. While someone in you team will take care in generating the contents. Again here, there are some requirement to learn CSS. They are not that different from those of HTML. Basic knowledge of using a personal computer (like creating folders and files, copy, cut, paste, edit). A basic text editor. All personal computers comes with a text editor (like Notepad for Windows, TextEdit in Mac, gedit in Linux with GNOME etc). You can also use other more advanced text editor if you have like Adobe Dream Weaver, or if you prefer the free ones just search online. But a very basic one will do. A browser – All modern PC will come with a browser in build (internet explorer for Windows, Safari for Mac). You can also download a third party browser like Google Chrome or Mozilla Firefox. The browser is like a channel to browse the net, or to see your HTML pages comes to life. Knowledge of HTML – well you’ll need to know HTML before you can learn CSS. But don’t worry if you didn’t know HTML, just browse our tutorial and learn. Now, here is a peek of CSS to give a blue background and white text. Well, go ahead and save this file as .html. Surprised! well CSS can be added to the html file itself or can be in a separate file (we’ll get to that later as of now just add this code to your text editor and save)
<html>
<head>
<title>HTML with CSS</title>
<style type="text/css">
body{
 background-color:#00C;
 color:#FFF;
}
</style>
</head>
<body>
 Hello World!
</body>
</html>

Compare the above code with the code in first HTML page, you’ll find a similarity, the only difference is the additional tag. That’s where CSS goes. Now, open the file in your browser and see.

COMMENTS

3/random/post-list
Name

blog,11,chemistry,8,css,1,feature,13,html,5,java-script,2,php-mysql,3,solved-qp,4,spectroscopy,3,technology,5,videos,3,web-design,13,
ltr
item
F Diengdoh.com: CSS - Styling your Website
CSS - Styling your Website
Learn how to style your website through CSS.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj9PSAU8iioAG8Mg8WWd-tSA8bpUbw9kC1cdXH3OZnyXFS5UHVAxwUyHGcn-1RCVnlbuDhkeDGn52pK22_VqjVl9cieCUXGzzN6ws5iL4l50v2-9xQKc8aTzD1RQDOY5MKn7b4tjPVwrP4/s1600/slider1.jpg
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj9PSAU8iioAG8Mg8WWd-tSA8bpUbw9kC1cdXH3OZnyXFS5UHVAxwUyHGcn-1RCVnlbuDhkeDGn52pK22_VqjVl9cieCUXGzzN6ws5iL4l50v2-9xQKc8aTzD1RQDOY5MKn7b4tjPVwrP4/s72-c/slider1.jpg
F Diengdoh.com
https://www.fdiengdoh.com/2016/01/css.html
https://www.fdiengdoh.com/
https://www.fdiengdoh.com/
https://www.fdiengdoh.com/2016/01/css.html
true
6372396504026100368
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content