Using External CSS in a web page creating time
<!DOCTYPE html>
<html>
<head>
<title>Using External CSS</title>
<link href="css/styles.css" type="text/css" rel="stylesheet" />
</head>
<body>
<h1>Potatoes</h1>
<p>There are dozens of different potato varieties. They are usually
described as early, second early and maincrop potatoes.</p>
</body>
</html>
css text file code saved in css folder
css code here show
body {
font-family: arial;
background-color: rgb(185,179,175);}
h1 {
color: rgb(255,255,255);}
0 comments:
Post a Comment