Website for a server building org
at master 38 lines 1.0 kB view raw
1<html> 2<head> 3 <title>Server builder</title> 4 <style> 5 body { 6 font-family: courier-new, monospace; 7 } 8 nav { 9 display: flex; 10 } 11 .nav-item { 12 margin-right: 8px; 13 } 14 .cart-cta { 15 margin-left: auto; 16 } 17 </style> 18</head> 19<body> 20 <nav> 21 <button class="nav-item"><a href="./index.html">Home</a></button> 22 <button class="nav-item"><a href="./servers.html">Servers</a></button> 23 <button class="nav-item"><a href="./about-us.html">About Us</a></button> 24 <button class="nav-item"><a href="./donate.html">Donate</a></button> 25 <button class="cart-cta"><a>Go to shop</a></button> 26 </nav> 27 <h1>Donate</h1> 28 <p> 29 We're a not-for-profit. 30 <br /> 31 If you have computer hardware that you'd like to donate, and/or money that would help the community, please reach out! 32 <br /> 33 <br /> 34 <button>Get in touch</button> 35 </p> 36</body> 37</html> 38