+ 1
How I can combine my Html and Css document together?
Html and Css
7 Respuestas
+ 4
We have 3 ways to connect css with html, inline, internal, external
https://www.w3schools.com/html/html_css.asp
+ 3
If you want to link a CSS file to HTML, this is what you need: https://www.w3schools.com/tags/tag_link.asp
+ 3
Using link tag
<link rel="stylesheet" href="style.css>
U should write link tag inside the head tag in your html file
search on Google about link tag if u don't understand my explanation
+ 3
Complete the CSS course for self understanding
+ 2
Thanks for your help
+ 2
Yes..
+ 1
Write this code in your html file in <head> or <body> tag (better way is in <head>):
<link rel="stylesheet" href="file-name" type="text/css">
file-name means name of your css file that you have saved with .css extension.
You have to write file name with .css extension.