Skip to main content

Posts

Featured

My First Post

<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * {     box-sizing: border-box; } /* Add a gray background color with some padding */ body {     font-family: Arial;     padding: 20px;     background: #f1f1f1; } /* Header/Blog Title */ .header {     padding: 30px;     font-size: 40px;     text-align: center;     background: white; } /* Create two unequal columns that floats next to each other */ /* Left column */ .leftcolumn {      float: left;     width: 75%; } /* Right column */ .rightcolumn {     float: left;     width: 25%;     padding-left: 20px; } /* Fake image */ .fakeimg {     background-color: #aaa;     width: 100%;     padding: 20px; } /* Add a card effect for articles */ .card { ...

Latest Posts