<!DOCTYPE html>
<html>
<head>
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial;
padding: 10px;
background: green;
}
/* Header/Blog Title */
.header {
padding: 30px;
text-align: center;
background: pink;
}
.header h1 {
font-size: 50px;
}
/* Style the top navigation bar */
.topnav {
overflow: hidden;
background-color: red;
}
/* Style the topnav links */
.topnav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change color on hover */
.topnav a:hover {
background-color: white;
color: black;
}
/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
float: left;
width: 75%;
}
/* Right column */
.rightcolumn {
float: left;
width: 25%;
background-color: white;
padding-left: 20px;
}
/* Fake image */
.fakeimg {
background-color: gray;
width: 100%;
padding: 20px;
}
/* Add a card effect for articles */
.card {
background-color: white;
padding: 20px;
margin-top: 20px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Footer */
.footer {
padding: 20px;
text-align: center;
background: grey;
margin-top: 20px;
}
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 0;
}
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
.topnav a {
float: none;
width: 100%;
}
}
</style>
</head>
<body>
<div class="header">
<h1>RAMAN SOLANKI </h1>
<p>You could resize the webpage and see the effect. </p>
</div>
<div class="topnav">
<a href="https://www.google.com">Google</a>
<a href="https://www.youtube.com">Youtube</a>
<a href="https://www.twitter.com">Twitter</a>
<a href="https://www.harvard.edu" style="float:right">Harvard</a>
</div>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2>HEADING</h2>
<h5>Title description, July 18, 2022</h5>
<div class="fakeimg" style="height:200px;">You can add an image here</div>
<p>Some text..</p>
<p>You can add any information here. Make it into a paragraph! You know how to use the P attribute and if you are designing a website about art, this is where the details would go. </p>
</div>
<div class="card">
<h2> You can add more HEADING</h2>
<h5>Title description, July 17, 2022</h5>
<div class="fakeimg" style="height:200px;">Image</div>
<p>Some text..</p>
<p>Where it says fakeimg, you can add an image.</p>
</div>
</div>
<div class="rightcolumn">
<div class="card">
<h2>About Me</h2>
<div class="fakeimg" style="height:100px;">Image</div>
<p>Where it says fakeimg, you can add an image, you know how to add an image, just add the exact name of the file</p>
</div>
<div class="card">
<h3>Popular Post</h3>
<div class="fakeimg"><p>Image</p></div>
<div class="fakeimg"><p>Image</p></div>
<div class="fakeimg"><p>Image</p></div>
</div>
<div class="card">
<h3>Follow Me</h3>
<p>Some text, you can add yoour social media links</p>
</div>
</div>
</div>
<div class="footer">
<h2>Footer</h2>
</div>
</body>
</html>