diff --git a/index.html b/index.html
index 1dc9106..e6afd56 100644
--- a/index.html
+++ b/index.html
@@ -39,6 +39,64 @@
Markdown.css
$('a img').css({'max-height': '1em', 'max-width': '1em'});
-->
+
+
+Features
+
+- Clean Markdown-like styling
+- Readable typography
+- Responsive layout
+- Simple CSS structure
+
+
+Example Code
+
+
+
+function hello() {
+ console.log("Hello Markdown CSS!");
+}
+hello();
+
+
+
+Blockquote Example
+
+Markdown.css helps HTML look clean and readable like Markdown documents.
+
+
+Table Example
+
+
+| Feature |
+Status |
+
+
+
+| Typography |
+✔ Implemented |
+
+
+
+| Responsive |
+✔ Implemented |
+
+
+
+| Dark Mode |
+⚡ Coming Soon |
+
+
+
+Image Example
+
+
+
+
+
+Contact
+
+If you like this project, contribute on GitHub and improve it further.
diff --git a/style.css b/style.css
index a5c1fab..60e5906 100644
--- a/style.css
+++ b/style.css
@@ -194,3 +194,72 @@ a.right {
display: block;
}
}
+/* General Page Styling */
+
+body{
+ font-family: Arial, Helvetica, sans-serif;
+ background:#f5f7fa;
+ margin:40px;
+ line-height:1.6;
+}
+
+/* Headings */
+
+h1,h2,h3{
+ color:#1e3a8a;
+}
+
+/* Code Block */
+
+pre{
+ background:#1e1e1e;
+ color:#00ff9c;
+ padding:15px;
+ border-radius:6px;
+ overflow-x:auto;
+}
+
+/* Table Styling */
+
+table{
+ width:100%;
+ border-collapse:collapse;
+ margin-top:20px;
+}
+
+th,td{
+ padding:10px;
+ text-align:left;
+}
+
+th{
+ background:#1e3a8a;
+ color:white;
+}
+
+tr:nth-child(even){
+ background:#f2f2f2;
+}
+
+/* Blockquote */
+
+blockquote{
+ border-left:5px solid #1e3a8a;
+ padding-left:15px;
+ font-style:italic;
+ color:#444;
+}
+
+/* Image */
+
+img{
+ margin-top:20px;
+ border-radius:10px;
+ width:100%;
+}
+
+/* Hover Effect */
+
+a:hover{
+ color:#2563eb;
+}
\ No newline at end of file