Skip to content

Instantly share code, notes, and snippets.

@estudijoanpuig
Created February 10, 2022 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save estudijoanpuig/9fd31b34454854c4d16827908b3f970a to your computer and use it in GitHub Desktop.
Save estudijoanpuig/9fd31b34454854c4d16827908b3f970a to your computer and use it in GitHub Desktop.
tipus Style en HTML
El CSS es pot afegir als documents HTML de 3 maneres:
En línia : utilitzant l' styleatribut dins dels elements HTML
================================================================
style="background-image: url('img/login.png');"
<style type="text/css">
li {
font-size: 1.2rem;
}
</style>
<section class="module p-b-0 bg-dark" id="pagines" >
Interna : utilitzant un <style>element a la <head>secció
========================================================
Extern : utilitzant un <link> element per enllaçar a un fitxer CSS extern
=========================================================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment