Added COMPLETE.md, edited index.html and styles.cs

s according to README.md
This commit is contained in:
cheeks 2024-07-01 22:05:28 -04:00
parent 4d229c643a
commit 38463444a9
3 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1 @@
# Complete

View File

@ -8,7 +8,7 @@
<link rel="stylesheet" href="style.css">
</head>
<body>
<button>Click Me!</button>
<button>No, Click Me!</button>
<button class="first">Click Me!</button>
<button class="second">No, Click Me!</button>
</body>
</html>

View File

@ -0,0 +1,15 @@
.first,
.second {
font-family: Helvetica, 'Times New Roman', sans-serif;
font-size: 28px;
}
.first {
background-color: black;
color: white;
font-weight: bold;
}
.second {
background-color: yellow;
}