Posts

Showing posts from March, 2024

First html one page template

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>MCQ GK Blog</title>     <style>         /* CSS styles for the layout */         body {             font-family: Arial, sans-serif;             margin: 0;             padding: 0;         }         header {             background-color: #333;             color: #fff;             padding: 10px 0;             text-align: center;         }         nav {             background-color: #444;   ...