How to link html and css | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to link html and css

Hello can anybody tell me how t link httml and css for colourful and beutiful texts

11th Jul 2020, 5:11 AM
Amogh Desai
Amogh Desai - avatar
5 Answers
+ 8
In sololearn you didn't need to do that sololearn do it by itself. If you want you do in your pc you can use <link href='' type='text/css' rel='stylesheet' /> Value of href is the address of css file Happy coding
11th Jul 2020, 5:19 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 5
Welcome bro
11th Jul 2020, 5:23 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 5
Amogh Desai also go through the answer of JessP It is also good in point of view of bootstrap and advance web development.
11th Jul 2020, 5:57 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 2
Thanks
11th Jul 2020, 5:23 AM
Amogh Desai
Amogh Desai - avatar
+ 2
Hi, You can also directly import a css framework such as bootstrap (there are many other ones). On its website, it has a code for this, which is under the starter template heading: <!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> <title>Hello, world!</title> </head> <body> <h1>Hello, world!</h1> <!-- Optional JavaScript --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script> </body> </html>
11th Jul 2020, 5:54 AM
JessP
JessP - avatar