2. Create a web page that contains a few paragraphs and hyperlinks and a link to an an external style sheet. The external style sheet should contain the following styles:
Set the left and right margins to 1 inch.
The first letter in a paragraph should be three times the size of the other letters.
All the links should display in red color with no underline.
Link the style sheet to your Web page.
Html page is index.html and the style sheet linked with it is StyleSheet.css

index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href="StyleSheet.css" rel="stylesheet" />
<title></title>
</head>
<body>
<a href="#">Link 1</a>
<p>
Education develops a country’s economy and society; therefore, it is the milestone of a nation’s development. Education provides
knowledge and skills to the population, as well as shaping the personality of the youth of a nation. Nevertheless, can education
shape the youth’s national identity? Can education cultivate the person's identity or sense of belonging to the nation? In line with
that, this paper which is part of a larger scale study on Language and Social Cohesion in the Formation of National Identity
funded by University Kebangsaan Malaysia would try to examine the relationship between education and national identity. A
sample of 375 respondents participated in this study through responding to a set of self-administered questionnaire. Findings of
the study show that education contributes to the formation of national identity. Further analyses on the influence of education
among ethnic groups will be discussed.
</p>
<a href="#">Link 3</a>
<p>
Education develops a country’s economy and society; therefore, it is the milestone of a nation’s development.
Education provides knowledge and skills to the population, as well as shaping the personality of the youth of a
nation. Nevertheless, can education shape the youth’s national identity? Can education cultivate the person's identity
or sense of belonging to the nation?
</p>
<a href="#">Link 3</a>
<p>
Education is the key to move in the world, seek better jobs and ultimately succeed in life. Education is the best
investment for the people because well educated people have more opportunities to get a job which gives them
satisfaction. Educated individuals enjoy respect among their colleagues and they can effectively contribute to the
development of their country and society by inventing new devices and discoveries. Main purpose of education is to
educate individuals within society, to prepare and qualify them for work in economy as well as to integrate people
into society and teach them values and morals of society. Role of education is means of socializing individuals and
to keep society smoothing and remain stable. Education in society prepares youngsters for adulthood so that they
may form the next generation of leaders. One of the education essential tasks is to enable people to understand
themselves. Students must be equipped with knowledge and skills which are needed to participate effectively as
member of society and contribute towards the development of shared values and common identity
</p>
</body>
</html>
************************************************************************************************************************************
StyleSheet.css
body {
margin-left: 1in;
margin-right: 1in;
}
p::first-letter {
font-size: 3em;
}
a{
color:red;
text-decoration:none;
}
2. Create a web page that contains a few paragraphs and hyperlinks and a link to...