HTMLify
about.html
Views: 674 | Author: demo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> /* Reset some default styles */ body, h1, h2, p, ul, li { margin: 0; padding: 0; } /* Style the navigation bar */ nav ul { list-style: none; background-color: #333; overflow: hidden; } nav li { float: left; } nav a { display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } /* Style the header */ header { background-color: #3498db; color: white; text-align: center; padding: 20px; } /* Style the main content */ main { max-width: 800px; margin: 20px auto; padding: 20px; background-color: white; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); } section { margin-bottom: 20px; } h2 { font-size: 24px; color: #333; } /* Style the footer */ footer { text-align: center; background-color: #333; color: white; padding: 10px; } </style> <title>About</title> </head> <body> <nav> <ul> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> <header> <h1>About Me</h1> <p>Someone who create this page.</p> </header> <main> <section> <h2>My Story</h2> <p>This is the about page content. By the way it is just a demo site so you will only get this minimal stuff here.</p> </section> </main> <footer> <p>© 2023 Demo site</p> </footer> </body> </html> |