Template for Computer
Template for Computer
2025-2026
Portfolio
DOCUMENTATION
body {
display: flex;
flex-direction: column;
min-height: 100vh;
font-family: Arial, sans-serif;
}
.hero {
width: 80%;
margin: 50px auto;
overflow: hidden; /* Clearfix to contain floated elements */
flex: 1;
}
.hero img {
float: left;
width: 40%;
border-radius: 10px;
}
.hero-text {
float: right;
width: 55%;
}
h1 {
font-size: 2rem;
margin: 0;
}
p{
font-size: 1.2rem;
color: gray;
}
/* Footer styles */
.footer {
background: #333;
color: white;
text-align: center;
padding: 10px;
margin-top: auto;
}
</style>
</head>
<body>
<div class="hero">
<img src="https://placedog.net/500/300" alt="Cute Dog">
<div class="hero-text">
<h1>Welcome to Our Site</h1>
<p>Your best friend deserves the best care. Explore our services and find
the perfect products for your dog.</p>
</div>
</div>
<footer class="footer">
© 2025 My Website | All Rights Reserved
</footer>
</body>
</html>