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)

Đặng Trần Nhật Minh [T2008A]
Đặng Trần Nhật Minh

2020-10-15 10:49:12



https://tourists-haxm.herokuapp.com/14.10/Tourists/TouristAttractions.html



Triệu Văn Lăng [T2008A]
Triệu Văn Lăng

2020-10-15 10:27:15



https://thienlac.herokuapp.com/bai1554/TouristAttractions.html



Trần Thị Khánh Huyền [T2008A]
Trần Thị Khánh Huyền

2020-10-15 09:02:38


#Italy.html


<!DOCTYPE html>
<html>
<head>
	<title>Italy</title>
	<meta charset="utf-8">
	<link rel="stylesheet" type="text/css" href="styleTourist.css">
</head>
<body>
<div class="heading">europe tourist attractions</div>
<p><a href="Italy.html">Italy</a></p>
<ul style="list-style-type: square;">
	<li>The Vatican.</li>
	<li>Turin has the Ergizio Museum.</li>
	<li>The Leaning Tower of Pisa</li>
</ul>
<p><a href="TouristAttractions.html">Back</a></p>
</body>
</html>



Trần Thị Khánh Huyền [T2008A]
Trần Thị Khánh Huyền

2020-10-15 09:01:02


#Paris.html


<!DOCTYPE html>
<html>
<head>
	<title>Paris</title>
	<meta charset="utf-8">
	<link rel="stylesheet" type="text/css" href="styleTourist.css">
</head>
<body>
<div class="heading">europe tourist attractions</div>
<p><a href="Paris.html">Paris</a></p>
<ul style="list-style-type: square;">
	<li>Louvre Museum</li>
	<li>The Champs Elysees and Arch du Triomph</li>
</ul>
<p><a href="TouristAttractions.html">Back</a></p>
</body>
</html>



Trần Thị Khánh Huyền [T2008A]
Trần Thị Khánh Huyền

2020-10-15 09:00:17


#London.html


<!DOCTYPE html>
<html>
<head>
	<title>London</title>
	<meta charset="utf-8">
	<link rel="stylesheet" type="text/css" href="styleTourist.css">
</head>
<body>
<div class="heading">europe tourist attractions</div>
<p><a href="London.html">London</a></p>
<ul style="list-style-type: square;">
	<li>Famous for Buckingham PLace, the resident of Queen Elizabeth</li>
	<li>Tower of London</li>
	<li>Big Ben</li>
</ul>
<p><a href="TouristAttractions.html">Back</a></p>
</body>
</html>



Trần Thị Khánh Huyền [T2008A]
Trần Thị Khánh Huyền

2020-10-15 08:59:54


#TouristAttractions.html


<!DOCTYPE html>
<html>
<head>
	<title>TouristAtractions</title>
	<meta charset="utf-8">
	<link rel="stylesheet" type="text/css" href="styleTourist.css">
</head>
<body>
	<div class="heading">europe tourist attractions</div><br/>
	<div class="general">Some of the must visit tourist places in Europe:</div>
	<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>



Trần Thị Khánh Huyền [T2008A]
Trần Thị Khánh Huyền

2020-10-15 08:59:18


#styleTourist.css


.heading{
	text-decoration: underline;
	font-family: arial;
	font-size: x-large;
	font-weight: bold;
	text-transform: uppercase;
	text-transform: capitalize;
	

}
.general{
	font-style: italic;
	text-align: justify;

}
.places{
	text-decoration: underline;
	font-family: cursive;
	font-size: medium;

}



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

2020-10-15 08:02:04



.heading{
	text-decoration: underline; font-family: arial; font-size: x-large; font-weight: bold; text-transform: uppercase; ::first-letter{font-size: 200%}; 
}

.general{
	font-style: italic; text-align: justify;
}

.places{
	text-decoration: underline; font-family: cursive; font-size: medium; text-transform: capitalize;
}

ul{
	font-size: small; font-family: verdana;
}



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

2020-10-15 08:01:51



<!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>The Vatican.</li> 
		<li>Tutrin has the Ergizio Museum.</li>
		<li>The Leaning Tower of Pisa</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:42



<!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>London:</u>
	<ul 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>
	</ul>
	<li><a href="TouristAttractions.html">Back</a></li>
</body>