0
How to tag a css link to html
plz teach
2 Answers
+ 4
if you need to add external style sheet in your webpage.syntax is
<link rel="stylesheet" type="text/css" href="stylesheetname.css">
if you wand to apply inline style in your webpage just add style attribute in your tag.
eg:- <p style="text-decoration:underline;font-size:10%">
if you wand to add internal styles in your webpage just add the css coding between <style> </style>.
you can refer this codes
https://code.sololearn.com/WWpu6teH5xqx/?ref=app
https://youtu.be/bHxGUfgbrY8
+ 2
Read the lessons...It is there.