I am trying to make an website page which has one large header photo, an horizontal line underneath and two images. Beside these images I would like to add one vertical hr line which displays an indent. I have tried to do this but it just disorientates my code and doesn't work. I have looked into this problem but have found no resources online at the moment. Any help is greatly appreciated. Below is my code:
<html>
<head>
<style>
.img1 {
min-width: 100%;
}
.bikeimg {
width: 50%;
height: 350px;
margin-top: -8px;
margin-left: 0px;
float: left;
}
.bike {
text-align: center;
}
.coins {
width: 50%;
height: 350px;
display:inline-block;
float: right;
margin-top: -8px;
}
.title {
text-align: center;
font-size: 80px;
font-family: 'Oswald', sans-serif;
margin-top: -320px;
text-decoration: underline;
}
.hr_first {
margin-top: 200px;
}
</style>
<body>
<img src="backgroundfirsttry.jpg" class="img1" height=483>
<div class="title">Our Proposals</div>
<hr size="30" color="black" class="hr_first">
<img src="bikeimg.jpg" class="bikeimg">
<hr size="5" color="black" height="500">
<img src="recycling.jpg" class="coins">
</body>
</html>
Again, any help is greatly appreciated. Thanks!
` doesn't stand for "horizontal rule" for nothing. – Rob Jun 13 '17 at 01:53