asked on
<style>
* {
box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 35%;
padding-left:10px;
}
.column2 {
float: left;
width: 65%;
padding-left:10px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.page2 {
width: 100%;
height: auto;
padding-top: 20px;
padding-bottom: 50px;
}
img {
border-radius: 5px;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
.column2 {
float: left;
width: 100%;
padding-left:10px;
padding-right:10px;
}
}
@media (max-width: 365px) {
img {
width: 325px;
}
}
.Alexia {
/*margin-top: 10px;*/
font-weight:500;
font-size:24px;
margin-bottom: 10px;
}
</style>
HTML (HyperText Markup Language) is the main markup language for creating web pages and other information to be displayed in a web browser, providing both the structure and content for what is sent from a web server through the use of tags. The current implementation of the HTML specification is HTML5.
TRUSTED BY
ASKER
Thank you for the direction...This works.
Open in new window