This project is a personal blog built using HTML, CSS, and JavaScript. It serves as a platform to share thoughts, ideas, and experiences through blog posts.
hahaha Tets2
personal-blog
├── src
│ ├── index.html # Main HTML document for the blog
│ ├── styles # Directory for CSS styles
│ │ └── main.css # Styles for the blog
│ ├── scripts # Directory for JavaScript files
│ │ └── main.js # JavaScript functionality for the blog
│ └── posts # Directory for blog posts
│ └── sample-post.html # Sample blog post template
└── README.md # Documentation for the project
- Clone the repository to your local machine.
- Open the
src/index.htmlfile in a web browser to view the blog. - Modify the
src/styles/main.cssfile to change the appearance of the blog. - Add new blog posts by creating new HTML files in the
src/postsdirectory.
- Responsive design for optimal viewing on various devices.
- Easy to add new blog posts by creating new HTML files.
- JavaScript functionality for dynamic content and interactivity.
To add a new blog post:
- Create a new HTML file in the
src/postsdirectory. - Use the structure from
sample-post.htmlas a template. - Link to the new post from the main page or include it in the blog's navigation.