-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLevel1_5.html
More file actions
22 lines (21 loc) · 1.18 KB
/
Level1_5.html
File metadata and controls
22 lines (21 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning CSS Level 1</title>
<link rel = "stylesheet" href = "./Level1_5.css">
</head>
<body>
<!-- changing paragraph to uppercase, lowercase, and capitalarize -->
<!-- check style5.css file for more information -->
<!-- to change cases of the text .... -->
<!-- text-transform property is used in CSS -->
<!-- eg => text-transform: uppercase;
text-transform: lowercase;
text-transform: capitalarize; -->
<p id = "case">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Earum reprehenderit aspernatur porro temporibus exercitationem, minima molestias maxime accusamus at optio!</p><br>
<p id = "case2">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus illo, obcaecati optio amet temporibus architecto distinctio possimus odit. Excepturi illum id fugiat quos provident dolorem praesentium nihil. Illum, distinctio totam!</p><br>
<p id = "case3">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Numquam sequi facere doloribus veritatis error ab.</p>
</body>
</html>