Help with New Java course Box Model

I am at the css box model portion of the course. I have entered in info on the styles.css but there are no buttons showing up. I don’t remember setting these up in the index.html and I have gone through the videos twice to see what I missed but can’t seem to find it. I will paste in the code below for both ths css and the index.html.

#moralis-reference {
    text-shadow: 2px 2px 7px darkgray
}
.first-paragraph {
    border: 2px dashed blue;
}
body {
    background-color: beige;
}
button {
    border: none;
    box-shadow: 3px 3px 7px rgba(90, 90, 90, 0.6);
    cursor: pointer;
    } 
}
form {
    padding: 15px;
    border: 2px solid black;
    margin: 30px;
}

}
[type=text], [type=number], [type=submit] {
    padding: 8px;
}
```<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=<device-width>, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./CSS/styles.css">
</head>
<body>
    <h1>Hello, Moralis!</h1>
    <p class="first-paragraph"> 
   Lorem ipsum dolor sit amet consectetur adipisicing elit. Quaerat, fuga ipsa ad recusandae saepe id.
</p> 
    <p id="moralis reference">Visit <a href="https://moralis.io/" target="_blank">Morals.io</a> and start <strong>buidl</strong>
         ing!
  
    <h2>Part1: example</h2>
    <h3>Chapter 1: Metamask login</h3>
    <img src="./Assets/MetaMask_Logo.png" 
    alt="MetaMask Login"/>
    <h3>Chapter 2: loading NFTs</h3>
    <h4>Section 2.1: BigBoy Pants</h4>
    <h4>Section 2.2: Pumpkins</h4>
    <h2>Part 2: Building a Dex</h2>
 <ol>
     <li>Bitcoin</li>
     <li>Etherium</i>
     <li>Tether</li>
 </ol>
 <ul>
    <li>Bitcoin</li>
    <li>Etherium</i>
    <li>Tether</li>
 </ul>
        
   
    <p>This is an updater</p>
</body>
</html>``

type or paste code here

1 Like

Hey @shonesto, hope you are well.

The only thing you are missing, is to create the button on your HTML file.

<button> button </button>

Carlos Z