By GokiSoft.com| 21:22 16/10/2023|
Học HTML5 - CSS3

Tìm hiểu hiển thị TEXT trong HTML5 và CSS - Phần advanced

Trước khi bắt đầu làm bài này. Bạn có thể làm bài tập đơn giản hơn về Text trong HTML5

Vui lòng xem tại đây => Tìm hiểu hiển thị TEXT trong HTML5 và CSS - Phần basic

Phản hồi từ học viên

5

(Dựa trên đánh giá ngày hôm nay)

Nguyễn Xuân Mai [T2008A]
Nguyễn Xuân Mai

2020-10-15 08:01:27



<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions in Europe</title>
	<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
	<div class="heading">europe tourist attraction</div>
	<br>
	<u>Paris:</u>
	<ul style="list-style-type: square;">
		<li>Louvre Museum.</li> 
		<li>The Champs Elysees and Arc du Triomph.</li>
	</ul>
	<li><a href="TouristAttractions.html">Back</a></li>
</body>



Nguyễn Xuân Mai [T2008A]
Nguyễn Xuân Mai

2020-10-15 08:01:09



<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions in Europe</title>
	<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
	<div class="heading">europe tourist attraction</div>
	<br>
	<div class="general">Some of the must visit tourist places in Europe:</div>
	<ul style="list-style-type: none;">
		<li><a href="London.html">London</a></li> 
		<li><a href="Paris.html">Paris</a></li>
		<li><a href="Italy.html">Italy</a></li>
	</ul>
</body>
</html>



Nguyễn Hữu Hiếu [T2008A]
Nguyễn Hữu Hiếu

2020-10-14 15:53:25


#1554.html


<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions</title>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<p class="heading">Europe tourist attractions</p>
	<p class="general">Some of the must tourist places in Europe</p>
	<p><a href="london.html">London</a></p>
	<p><a href="paris.html">Paris</a></p>
	<p><a href="italy.html">Italy</a></p>
	
</body>
</html>


#italy.html


<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions</title>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<p class="heading">Europe tourist attractions</p>
	<p class="text">Italy</p>
	<ul>
		<li>Famous for buckingham Palace, the residence of Queen Elizabeth</li>
		<li>Tower of London</li>
		<li>Big Ben</li>
	</ul>
	<p><a href="1554.html">Back</a></p>
	
</body>
</html>


#london.html


<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions</title>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<p class="heading">Europe tourist attractions</p>
	<p class="text">London</p>
	<ul>
		<li>Famous for buckingham Palace, the residence of Queen Elizabeth</li>
		<li>Tower of London</li>
		<li>Big Ben</li>
	</ul>
	<p><a href="1554.html">Back</a></p>
	
</body>
</html>


#paris.html


<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions</title>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<p class="heading">Europe tourist attractions</p>
	<p class="text">Paris</p>
	<ul>
		<li>Famous for buckingham Palace, the residence of Queen Elizabeth</li>
		<li>Tower of London</li>
		<li>Big Ben</li>
	</ul>
	<p><a href="1554.html">Back</a></p>
	
</body>
</html>


#style.css


.heading {
	text-decoration: underline;
	font-size: x-large;
	font-weight: bold;
	font-style: Arial;
	text-transform: capitalize 5px;
	text-transform: uppercase;
}
.general {
	font-style: italic;
}
.text {
	text-decoration: underline;;
}



Nguyễn Anh Vũ [T2008A]
Nguyễn Anh Vũ

2020-10-14 10:45:35


#paris.html


<!DOCTYPE html>
<html>
<head>
	<title>Europe Touri Attractions</title>
	<meta charset="utf-8">
</head>
<body>
    <h1><u>Europe Tourist Attractions</u></h1>
<br>
Some of the must visit tourist places Europe
<br>

<br>
<u style="color: #9900CC">London</u>
<br>

<br>
<u style="color: #9900CC">Paris</u>
<br>

<br>
<u style="color: #9900CC">Italy</u>
<br>
</body>
</html>



Nguyễn Anh Vũ [T2008A]
Nguyễn Anh Vũ

2020-10-14 10:21:26


#italy.html


<!DOCTYPE html>
<html>
<head>
	<title>Europe Touri Attractions</title>
	<meta charset="utf-8">
</head>
<body>
	<h1>
		
	</h1>
    <h1>
    	<u>Europe Tourist Attractions</u>
    </h1>
<br>
<u style="color: black">Italy</u>
<br>
<ol style="list-style-type: square;">  
<li>The Vatican.</li>
<li>Turin has the Ergizio Museum.</li>
<li>The Leaning Tower of Pisa.</li>
</ol>
<br>
<u style="color: #990099">Back</u>
<br>
</body>
</html>



Nguyễn Anh Vũ [T2008A]
Nguyễn Anh Vũ

2020-10-14 10:18:32


#paris2.html


<!DOCTYPE html>
<html>
<head>
	<title>Europe Touri Attractions</title>
	<meta charset="utf-8">
</head>
<body>
	<h1>
		
	</h1>
    <h1>
    	<u>Europe Tourist Attractions</u>
    </h1>
<br>
<u style="color: black">London</u>
<br>
<ol style="list-style-type: square;">  
<li>Famous for Buckingham Palace, the residence of Queen Elizabeth.</li>
<li>Tower of London.</li>
<li>Big Ben.</li>
</ol>
<br>
<u style="color: #990099">back</u>
<br>
</body>
</html>



Nguyễn Anh Vũ [T2008A]
Nguyễn Anh Vũ

2020-10-14 10:08:49


#paris1.html


<!DOCTYPE html>
<html>
<head>
	<title>Europe Touri Attractions</title>
	<meta charset="utf-8">
</head>
<body>
	<h1>
		
	</h1>
    <h1>
    	<u>Europe Tourist Attractions</u>
    </h1>
<br>
Some of the must visit tourist places Europe
<br>

<br>
<u style="color: #990099">London</u>
<br>

<br>
<u style="color: #990099">Paris</u>
<br>

<br>
<u style="color: #990099">Italy</u>
<br>
</body>
</html>



Do Trung Duc [T2008A]
Do Trung Duc

2020-10-11 09:12:13



https://gokisoft10.herokuapp.com/buoi%202/bai%20tap%20tren%20gokisoft/textadvance/TouristAttractions.html



Nguyên Phấn Đông [community]
Nguyên Phấn Đông

2020-10-09 01:51:28

italali


<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions in Europe</title>
</head>
<body>
   <h1><u style="color: black;font-style: arial;font-size: x-large;text-transform:capitalize;text-transform: uppercase;">Europe Tourist Attractions</u></h1>
   <h2><u style="font-style: cursive;font-size: medium;">Italy</u></h2>
   <h3 style="margin-left: 10px;font-style: cursive;font-size: medium">• The Vatican</h3>
   <h3 style="margin-left: 10px;font-style: cursive;font-size: medium">• Turin has the Ergizio Museum </h3>
   <h3 style="margin-left: 10px;font-style: cursive;font-size: medium">• The leaning Tower of Pisa</h3>
   <h2><u style="font-style: cursive;font-size: medium;">black</u></h2>
</body>
</html>



Nguyên Phấn Đông [community]
Nguyên Phấn Đông

2020-10-09 01:51:12

paris


<!DOCTYPE html>
<html>
<head>
	<title>Tourist Attractions in Europe</title>
</head>
<body>
   <h1><u style="color: black;font-style: arial;font-size: x-large;text-transform:capitalize;text-transform: uppercase;">Europe Tourist Attractions</u></h1>
   <h2><u style="font-style: cursive;font-size: medium;">Paris</u></h2>
   <h3 style="margin-left: 10px;font-style: cursive;font-size: medium">• louver Museum</h3>
   <h3 style="margin-left: 10px;font-style: cursive;font-size: medium">• The champs Elysees and Arch du Triomph</h3>
   
   <h2><u style="font-style: cursive;font-size: medium;">black</u></h2>
</body>
</html>