- 1
How can i add css inside of html?
4 Answers
+ 2
in file mode:
<style>
.... your css ....
</style>
external mode:
<head>
<link rel="stylesheet" href="your_css_file.css">
</head>
external is best...
+ 1
Do you seen beginning of css course https://www.sololearn.com/learn/CSS/1079/
+ 1
You can use inline and internal css to add css in html file.
0
<style>
your css files or codes
</style>