Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Page</title>
- <style>
- .title {
- background-color: yellow;
- text-align: center;
- margin: 0 0 2% 0;
- }
- .middle {
- display: flex;
- }
- .footer {
- text-align: center;
- }
- .menu {
- padding-right: 10%;
- }
- .posts {
- padding: 0 40% 0 1%;
- border-left: 1px solid green;
- }
- .last {
- padding: 20px;
- height: 100%;
- margin: 0;
- border: 3px dotted green;
- }
- </style>
- </head>
- <body>
- <h1 class="title">My blog about my life</h1>
- <div class="middle">
- <div class="menu">
- <h2>Menu</h2>
- <a href="#">Today</a><br>
- <a href="#">Yesterday</a><br>
- <a href="#">Last week</a><br>
- <a href="#">Archives</a>
- </div>
- <div class="posts">
- <h1>Meeting with supervisor</h1>
- <p><b>14 Dec 2011</b></p>
- <p>Today I went to the university by bus.</p>
- <p>I had a met with my PhD supervisor.</p>
- <h1>New car!!!</h1>
- <p><b>12 Dec 2011</b></p>
- <p>Today I bought my new car. It's a Honda Accord and it's really nice.</p>
- <p>I met some friends at a pub</p>
- <h1>Visit my parents</h1>
- <p><b>10 Dec 2011</b></p>
- <p>Tried to contact my PhD supervisor. He was out of his office.</p>
- <p>I visited my parents and we had a nice dinner together.</p>
- </div>
- <div class="last">
- <h1>Last posts</h1>
- <a href="#">Meeting with supervisor</a><br>
- <a href="#">New car!!!</a><br>
- <a href="#">Visit my parents</a>
- </div>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment