maandag 28 juli 2014

How to Add External CSS to HTML

Share the joy
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  

Adding inline or internal CSS is easy. Just add <style> tag below head and start writing your CSS code. But it’s always recommended to use external stylesheet as it keepsmain HTML file smaller in size that eventually helps loading faster. In this tutorial, we are showing you how to add external CSS to HTML.


Steps to add external CSS to HTML


1. First of all, create an html file. You may use any IDE like notepad or notepad ++ or Adobe Dreamweaver to create an html file. In this tutorial, we are using plain notepad that is available in any Windows PC. Open notepad and type the following code:


<html>

<head>

<title>First CSS tutorial</title>

<link rel=”stylesheet” type=”text/css” href=”css/style.css” />

</head>

<body>

<p>Type or copy paste some text here….Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Ipsum.</p>

</body>

</html>



And then save the file as .html (eg: first.html).

Here,

<link rel=”stylesheet” type=”text/css” href=”css/style.css” /> will link the stylesheet that we are going to create.


step-1-create-html-external-css


2. Next, create new css file named as style.css and save in the new folder named css inside the same folder. To create new css file, open notepad and save it as style.css


step-2-create-css-external-css


3. Next, open the file style.css and type your css code:


p

width:500px;

text-align:justify;

margin:5px;



And then save the file. Make sure it is saved as .css

Here we are adding css property to the paragraph we have created in html file.

Width will set the width of paragraph to 500px.

text-align:justify will justify the paragraph and margin:5px will add 5px margin to all side – top, bottom, left, right


step-3-type-css-external-css


4. Finally, open the html file we have created and you will see the css applied to your html file. This completes our tutorial on how to add external CSS to HTML file.


step-4-view-html-external-css


Did you find this tutorial on how to add external CSS to HTML helpful? Please comment below and let us know!


The post How to Add External CSS to HTML appeared first on Web Design Blog | Magazine for Designers.




Share the joy
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  

How to Add External CSS to HTML

Geen opmerkingen:

Een reactie posten