Don't be stingy, Share this post with others!
Quicktip: How to insert a stylesheet into your HTML document
There are many people who are new to the web design field and have no idea how to insert a stylesheet externally or internally. In this quick tip I will show you multiple ways to insert your stylesheet into your HTML document.
Call Css Externally
The method below is the normal method for calling a stylesheet via HTML document. Place code inside of the head tags.
<link rel="stylesheet" type="text/css" href="style.css" />
Call Css via stylesheet
The method below is the normal method for calling a stylesheet from a css document. Place code inside of your stylesheet. @ Import tells the css document to import another stylesheet.
@import url("import.css");
Call Css Internally
The code below is a way for calling a stylesheet within a HTML document. Place code inside of the body tags.
<style> /*Insert Style code here*/ </style>
Don't be stingy, Share this post with others!
adding css tutorial, beginner, Css, css how to, css tutorial, css3 tutorial, document, external, html, HTML5, html5 tutorial, insert, insert css into html, stylesheet, stylesheet into your HTML document.
Hi!
this tutorial is very useful and get more knowledge.
thank you