[go: up one dir, main page]

0% found this document useful (0 votes)
22 views2 pages

Css5 - Lab Task Two

This document is an HTML code for a webpage dedicated to the Indian Cricket Team. It features player profiles for Rohit Sharma, Sachin Tendulkar, and Jasprit Bumrah, highlighting their roles and achievements. The page includes a header, a section for team members, and a footer with copyright information.

Uploaded by

Sarathi M
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views2 pages

Css5 - Lab Task Two

This document is an HTML code for a webpage dedicated to the Indian Cricket Team. It features player profiles for Rohit Sharma, Sachin Tendulkar, and Jasprit Bumrah, highlighting their roles and achievements. The page includes a header, a section for team members, and a footer with copyright information.

Uploaded by

Sarathi M
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

1)

Code:
<!DOCTYPE html>
<html>
<head>
<title>Indian Cricket Team</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<header>
<h1>Indian Cricket Team</h1>
</header>

<section class="team">
<div class="player-card">
<img src="images/rohit-sharma-131403799-16x9_1.avif" alt="Rohit Sharma">
<h2>Rohit Sharma</h2>
<p>Captain and opening batsman known for his elegant strokes and double centuries in ODIs.</p>
</div>

<div class="player-card">
<img src="images/sachinimg.jpg" alt="Sachin Tendulkar">
<h2>Sachin Tendulkar</h2>
<p>Legendary cricketer, widely regarded as the 'God of Cricket' with 100 international
centuries.</p>
</div>

<div class="player-card">
<img src="images/Jasprit-Bumrah-Test-1.png" alt="Jasprit Bumrah">
<h2>Jasprit Bumrah</h2>
<p>India's star fast bowler, known for his yorkers, pace, and accuracy in all formats.</p>
</div>
</section>

<footer>
<p>© 2025 Indian Cricket Fan Page</p>
</footer>

</body>
</html>
Output:

You might also like