feat(sass): added

This commit is contained in:
Rafa Muñoz
2025-01-27 13:50:39 +01:00
parent f189ff2f1c
commit 17d0563011
32 changed files with 842 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="index.css">
<body>
<h1>Hello World</h1>
<p>This is a paragraph.</p>
<ul>
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">SASS</a></li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,7 @@
@import "reset";
body {
font-family: Helvetica, sans-serif;
font-size: 18px;
color: red;
}

View File

@@ -0,0 +1,7 @@
html,
body,
ul,
ol {
margin: 0;
padding: 0;
}