You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
690 B
35 lines
690 B
10 months ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<meta name="viewport" content="width=device-width"/>
|
||
|
<style>
|
||
|
h1 {
|
||
|
font-family: "Times New Roman";
|
||
|
color: blue;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.text1 {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
.text2 {
|
||
|
font-weight: bold;
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
|
||
|
.text3 {
|
||
|
text-align: right;
|
||
|
font-size: 2em;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Times New Roman</h1>
|
||
|
<hr>
|
||
|
<p class="text1">Italic Text</p>
|
||
|
<p class="text2">Bold 20px Text</p>
|
||
|
<p class="text3">2em Right Align Text</p>
|
||
|
</body>
|
||
|
</html>
|