|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 7 | + <title>CSS Basics Projects</title> |
| 8 | + <!-- normalize --> |
| 9 | + <link rel="stylesheet" href="./normalize.css" /> |
| 10 | + <!-- font-awesome --> |
| 11 | + <link |
| 12 | + rel="stylesheet" |
| 13 | + href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" |
| 14 | + /> |
| 15 | + <!-- Stylesheet --> |
| 16 | + <link rel="stylesheet" href="./styles.css" /> |
| 17 | + </head> |
| 18 | + <body> |
| 19 | + <section class="section"> |
| 20 | + <h1 class="section-title">CSS Basics Projects</h1> |
| 21 | + <ul class="projects"> |
| 22 | + <li class="project-title"> |
| 23 | + <a href="./01-css-fundamentals/index.html"> |
| 24 | + <span>css</span> fundamentals |
| 25 | + </a> |
| 26 | + </li> |
| 27 | + <li class="project-title"> |
| 28 | + <a href="./02-colors/index.html"> colors </a> |
| 29 | + </li> |
| 30 | + <li class="project-title"> |
| 31 | + <a href="./03-units/index.html"> units</a> |
| 32 | + </li> |
| 33 | + <li class="project-title"> |
| 34 | + <a href="./04-typography/index.html"> typography </a> |
| 35 | + </li> |
| 36 | + <li class="project-title"> |
| 37 | + <a href="./05-css-model/index.html"> <span>css</span> model </a> |
| 38 | + </li> |
| 39 | + <li class="project-title"> |
| 40 | + <a href="./06-display-property/index.html"> display property </a> |
| 41 | + </li> |
| 42 | + <li class="project-title"> |
| 43 | + <a href="./07-background-images/index.html"> background images </a> |
| 44 | + </li> |
| 45 | + <li class="project-title"> |
| 46 | + <a href="./08-position-property/index.html"> position property </a> |
| 47 | + </li> |
| 48 | + <li class="project-title"> |
| 49 | + <a href="./09-animation-property/index.html"> animation property </a> |
| 50 | + </li> |
| 51 | + <li class="project-title"> |
| 52 | + <a href="./10-cards/index.html"> cards </a> |
| 53 | + </li> |
| 54 | + </ul> |
| 55 | + </section> |
| 56 | + </body> |
| 57 | +</html> |
0 commit comments