<!DOCTYPE html>
<html>
<head>
	<title>Cristiano Ronaldo Biography</title>
</head>
<body>
	<h1>Cristiano Ronaldo Biography</h1>
	<p>Cristiano Ronaldo is a Portuguese professional footballer who has played for Manchester United, Real Madrid, Juventus and Portugal. He was born on February 5, 1985, on the island of Madeira in Portugal. Ronaldo is widely regarded as one of the greatest football players of all time. His full name in Cristiano Ronaldo dos Santos Aveiro.</p>

	<h2>Early Life</h2>
	<p>Ronaldo grew up in a working-class family in Madeira. His father worked as a kit man at a local football club, and his mother was a cook. Ronaldo began playing football at a young age and quickly showed promise as a player.Ronaldo’s father, José Dinis Aveiro, was the equipment manager for the local club Andorinha. (The name Ronaldo was added to Cristiano’s name in honour of his father’s favourite movie actor, Ronald Reagan, who was U.S. president at the time of Cristiano’s birth.) At age 15 Ronaldo was diagnosed with a heart condition that necessitated surgery, but he was sidelined only briefly and made a full recovery. He first played for Clube Desportivo Nacional of Madeira and then transferred to Sporting Clube de Portugal (known as Sporting Lisbon), where he played for that club’s various youth teams before making his debut on Sporting’s first team in 2002.A tall player at 6 feet 1 inch (1.85 metres), Ronaldo was a formidable athlete on the pitch. </p>

	<h2>Professional Career</h2>
	<p>Ronaldo began his professional career with Sporting CP in Portugal. He then moved to Manchester United in 2003, where he won three Premier League titles and the UEFA Champions League. In 2009, he moved to Real Madrid for a then-world record transfer fee of £80 million. At Real Madrid, he won four Champions League titles and two La Liga titles. In 2018, he moved to Juventus for €100 million.After a successful season with Sporting that brought the young player to the attention of Europe’s biggest football clubs, Ronaldo signed with English powerhouse Manchester United in 2003. He was an instant sensation and soon came to be regarded as one of the best forwards in the game. His finest season with United came in 2007–08, when he scored 42 League and Cup goals and earned the Golden Shoe award as Europe’s leading scorer, with 31 League goals. After helping United to a Champions League title in May 2008, Ronaldo captured Fédération Internationale de Football Association (FIFA) World Player of the Year honours for his stellar 2007–08 season. He also led United to an appearance in the 2009 Champions League final, which they lost to FC Barcelona.</p>

	<h2>International Career</h2>
	<p>Ronaldo has represented Portugal at the international level since 2003. He has scored over 100 goals for his country and has won the European Championship and the UEFA Nations League with Portugal.On his home soil, after moving through the youth and under-21 ranks, Ronaldo had made his first appearance for Portugal’s full national team against Kazakhstan in August 2003 (four days after his debut for United). He was a key player in Portugal’s fourth-place finish at the 2006 World Cup and became the full-time captain of the national team in 2008. In 2012 his stellar play led Portugal to the semifinals of the European Championship, where his team was eliminated by rival Spain in a match that was decided by a penalty kick shoot-out. Ronaldo came into the 2014 World Cup hot off of his second world player of the year win, but his play at the tournament was spotty, and the entire Portugal team struggled during a group-stage elimination. In 2016 he helped Portugal win the European Championship, the country’s first major international tournament title, although he only played sparingly in the final because of a knee injury that he had sustained early in the match. Ronaldo played brilliantly at the 2018 World Cup, scoring four goals in four games as Portugal advanced to the knockout round only to lose its first match of that stage to a strong defensive Uruguay side. Four years later Ronaldo became the first male player to score at five different World Cups. However, he was not part of the starting lineup for several games, and Portugal’s 2022 World Cup ended with a loss in the quarterfinals.</p>

	<h2>Awards and Honours</h2>
	<ul>
		<li>FIFA World Player of the Year: 2008, 2013, 2014, 2016, 2017</li>
		<li>Ballon d'Or: 2008, 2013, 2014, 2016, 2017</li>
		<li>UEFA Best Player in Europe Award: 2014, 2016, 2017</li>
		<li>UEFA Champions League top scorer: 2008–09, 2012–13, 2013–14, 2014–15, 2015–16</li>
		<li>For Manchester United

    <h2>Personal Life</h2>
    <p>Ronaldo is known for his philanthropic work and has donated millions of dollars to various charities over the years. He is also known for his fashion sense and has launched his own clothing line called CR7.</p>

    

</body>
</html> 

HTML Online Editor & Compiler

Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML. You can also specify the stylesheet information in styles.css tab and scripts information in scripts.js tab and start coding.

About HTML

HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.

Syntax help

Fundamentals

  • Any HTML document must start with document declaration <!DOCTYPE html>
  • HTML documents begin with <html> and ends with </html>
  • Headings are defined with <h1> to <h6> where <h1> is the highest important heading and <h6> is the least important sub-heading.
  • Paragrahs are defined in <p>..</p> tag.
  • Links are defined in <a> tag.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    
  • Images are defined in <img> tag, where src attribute consists of image name.
  • Buttons are defined in <button>..</button> tag
  • Lists are defined in <ul> for unordered/bullet list and <ol> for ordered/number list, and the list items are defined in <li>.

HTML Elements and Attributes

  • HTML element is everything present from start tag to end tag.
  • The text present between start and end tag is called HTML element content.
  • Anything can be a tagname but it's preferred to put the meaningful title to the content present as tag name.
  • Do not forget the end tag.
  • Elements with no content are called empty elements.
  • Elements can have attributes which provides additional information about the element.
  • In the below example, href is an attribute and a is the tag name.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    

CSS

CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.

Example:

Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.

body{
  padding: 25px;
}
.title {
	color: #228B22;
	font-family: Candara;
}

HTML Tables

  • HTML Tables are defined in <table> tag.
  • Table row should be defined in <tr> tag
  • Table header should be defined in <th> tag
  • Table data should be defined in <td> tag
  • Table caption should be defined in <caption> tag

HTML-Javascript

  • Javascript is used in HTML pages to make them more interactive.
  • <script> is the tag used to write scripts in HTML
  • You can either reference a external script or write script code in this tag.

Example

<script src="script.js"></script>