1<div id='number1' class='model'>
2 <h2>Number 1:</h2>
3 <h3>Divs</h3>
4 <p>
5 Div's are great to split up and shape your website, they can be
6 modified my css, interact with js and more.
7 </p>
8 <!-- Eny regular html code can be put in divs, multiple classes
9 can be put in divs. Yet divs can only have 1 id. Divs are so useful!-->
10</div>
11<!-- Hope This Helped! -->
1
2<div style="background-color:lightblue">
3 <h3>This is a heading</h3>
4 <p>This is a paragraph.</p>
5</div>
6
1<body>
2<div class="no1" id="try to skip if you are new!">
3<h1>Lets Sign</h1>
4</div>
5<div class="no2">
6 <p>lalalalalalalalalalalalal</p>
7</div>
8<div class="no3">
9 <p>bla bla bla bla</p>
10</div>
11</body>