Posts

Showing posts from October, 2024

web development projects 2

 building a simple blog layout  HTML <!DOCTYPE html> <html> <head>     <title>My Simple Blog</title> </head> <body>     <header>         <h1>My Blog</h1>         <nav>             <ul>                 <li><a href="#">Home</a></li>                 <li><a href="#">About</a></li>                 <li><a href="#">Contact</a></li>             </ul>         </nav>     </header>     <main>         <article>             <h2>Blog Post Title</h2>           ...
 #include <stdio.h> int main() {