this repo has no description
1<!doctype html>
2<html lang="en">
3 <head>
4 <title>Box Model</title>
5 <meta charset="UTF-8" />
6 <meta name="viewport" content="width=device-width initial-scale=1.0" />
7 <link href="./styles.css" type="text/css" rel="stylesheet" />
8 </head>
9 <body>
10 <div class="header">
11 <p>this is a header</p>
12 </div>
13 <br/>
14 <!-- navigation bar -->
15 <ul class="nav">
16 <li><a href="/">Home</a></li>
17 <li class="dropdown">
18 <a href="" class="dropbtn">dropdown</a>
19 <div class="dropdown-content">
20 <a href="https://mmatt.net">mmatt.net</a>
21 <a href="https://teal.fm">teal.fm</a>
22 <a href="https://opn.haus">opn.haus</a>
23 </div>
24 </li>
25 </li>
26 </ul>
27
28 <h1>Introduction to Box Model</h1>
29 <img class="float" src="../introtohtml/image.webp" width="200px" />
30 <div class="box">
31 <p>so true</p>
32 </div>
33 <div class="box">
34 <p>so true</p>
35 </div>
36 <div class="box">
37 <p>so true</p>
38 </div>
39
40 <p>list</p>
41 <ul>
42 <li>one</li>
43 <li>two</li>
44 <li>three</li>
45 <li>four</li>
46 <li>five</li>
47 </ul>
48
49 <div class="footer">
50 matt morris - 2026
51 </div>
52 </body>
53</html>