Ritik Web de
Ritik Web de
<h1>Personal Details</h1>
<p align="left"><strong>Name:</strong> Ritik Raj </p>
<p align="left"><strong>Age: </strong> 19 </p>
<div id="intro">
<h1>INTRODUCTION</h1>
<p>Rohit Sharma (born 30 April 1987) is an Indian international cricketer who currently plays for and
captains the India national cricket team in Test and One Day International (ODI) matches. Previously,
he also captained the team in Twenty20 International (T20I) matches and led India's win in 2024 ICC
Men's T20 World Cup, subsequent to which he retired from T20s in June 2024.[3][4] He is considered
to be one of the best batsmen of his generation and one of the greatest opening batters of all time
</p> </div>
<div id="image">
<h2> IMAGE <h2>
<img height="300" width="300"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Prime_Minister_Of_Bharat_Shr
i_Nar endra_Damodardas_Modi_with_Shri_Rohit_Gurunath_Sharma_%28Cropped%29.jpg/330px-
Prime_Minister_Of_Bharat_Shri_Narendra_Damodardas_Modi_with_Shri_Rohit_Gurunath_Sharma_
%28Cr opped%29.jpg"> </div>
<div id="about">
<h1>ABOUT</h1>
<p>He holds several batting records which famously include most runs in T20 Internationals, most
sixes in international cricket,[a] most double centuries in ODI cricket (3), most centuries at Cricket
World Cups (7) and joint most hundreds in Twenty20 Internationals (5). He is the first player to score
5 T20I centuries.[7] He also holds the world record for the highest individual score (264) in a One Day
International (ODI) match and is the only player to have scored three double-centuries in ODIs and
also holds the record for scoring most hundreds (five) in a single Cricket World Cup, for which he won
the ICC Men's ODI Cricketer of the Year
award in 2019. He is the only player to win 50 matches as captain in T20Is. </p> </div>
</body>
</html>
Q9) Write a HTML code to create a web page with pink
colorbackground and display moving message in red
color
<html>
<head>
<title> MY WEB PAGE </title>
</head>
<body bgcolor ="pink">
<marquee behavior="scroll" direction="right" style="font-size:20px;
color:red;"> WELCOME TO GREATER NOIDA </marquee>
</body>
</html
Q 10) Create a web page, showing an ordered list of all
second semester courses.
<html>
<head>
<title> MY SECOND WEB PAGE </title>
</head><body>
<h1>first Semester marks List</h1>
<ol>
<li>English 98 </li>
<li>Maths 98</li>
<li>Digital electronics & computer fundamentals 97 </li>
<li>Data structure 96 </li>
<li>Python 99 </li>
</ol>
</body>
</html>