HTML and CSS Code For Webpage
HTML and CSS Code For Webpage
Source code:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
* {
box-sizing: border-box;
}
/* Header/logo Title */
.header {
background: #C8102F;
color: white;
height:20%;
/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}
/* Main column */
.main {
flex: 70%;
background-color: white;
padding: 20px;
}
/* Footer */
.footer {
padding: 20px;
text-align: right;
background: #ddd;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on
top of each other instead of next to each other */
@media screen and (max-width: 700px) {
.row, .navbar {
flex-direction: column;
}
}
.text-header
{
padding-top:10px;
margin-left:30%;
height:40%;
}
</style>
</head>
<body>
<div class="header">
<div class="left-imgs">
<img width=150px height=150px src="https://i0.wp.com/stmarysstationgallery.ca/wp-
content/uploads/2018/11/tim-hortons-logo.png?w=225&ssl=1" alt="Tim Hortons" >
</div>
<div class="text-header">
<h1>Tim Hortons</h1>
</div>
<div class="main">
<h2>Tim Hortons</h2>
<h5>Title description, Dec 7, 2017</h5>
<div class="fakeimg" style="height:200px;"><strong>Tim Hortons is a popular Canadian fast
food chain that serves a variety of baked goods, coffee, and other hot and cold beverages.
The Lahore location is one of the franchise locations, offering customers in Lahore, Pakistan
the chance to experience Tim Hortons’ classic menu items. Whether you’re in the mood for a
freshly brewed coffee, a delicious donut, or a hearty sandwich, Tim Hortons in Lahore is the
place to be. With its convenient location, friendly staff, and high-quality menu items, it’s
no wonder why Tim Hortons has become a favorite among locals and visitors
alike.</strong></div>
<h2>Contact Us</h2>
<h5>Title description, Sep 2, 2017</h5>
<div class="fakeimg"
style="height:200px;"><table><tbody><tr><th>Location</th><th>Address</th></tr><tr><td>Tim
Hortons DHA</td><td>145-MB Main Boulevard commercial lane Phase 6 DHA.</td></tr><tr><td>Tim
Hortons Kasoori Road (Gulberg III)</td><td>Mian Mehmood Ali Kasoori Rd</td></tr><tr><td>Tim
Hortons Mall One (Main Gulberg)</td><td>94-D Main Blvd Gulberg, near Liberty Chowk, Block
“D1” Gulberg III</td></tr><tr><td>Contact
Number</td><td>923024444793</td></tr></tbody></table></div>
</div>
</div>
</body>
</html>