Burned Designs
Active Member
- Joined
- May 7, 2013
- Messages
- 43
- Reaction score
- 0
To import a CSS Stylesheet your first going to need to know how to work with CSS and HTML.
CSS : Cascading Style Sheets
HTML : Hyper Text Mark-up Language
Import Code:
How CSS Looks
How the HTML would look after CSS is imported
CSS : Cascading Style Sheets
HTML : Hyper Text Mark-up Language
Import Code:
Code:
<link rel="stylesheet" type="text/css" href="stylesheet.css">
How CSS Looks
Code:
.text{
color:black;
font-size:12px;
text-decoration:none;
}
How the HTML would look after CSS is imported
Code:
<html>
<head>
<title>title of site</title>
</head>
<body>
<div class="text">
This is the text with the style of the CSS
</div>
</body>
</html>