Skip to content

Commit 5e1d36c

Browse files
author
Redwan Sharafat Kabir
committed
1 parent 964149f commit 5e1d36c

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

HTML5 and CSS/CSS text.html

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title></title>
6+
<style>
7+
#para1 {
8+
text-decoration: underline;
9+
text-align: center;
10+
text-transform: uppercase;
11+
word-spacing: 10px;
12+
}
13+
#para2 {
14+
text-decoration: overline;
15+
text-transform: capitalize;
16+
letter-spacing: 5px;
17+
line-height: 2;
18+
}
19+
#para3 {
20+
text-decoration: line-through;
21+
text-align: right;
22+
23+
}
24+
#para4 {
25+
text-align: center;
26+
text-transform: lowercase;
27+
}
28+
</style>
29+
</head>
30+
<body>
31+
<b>
32+
<p id="para1">Div paragraph 1</p>
33+
<p id="para2">Div paragraph 2</p>
34+
<p id="para3">Div paragraph 3</p>
35+
<p id="para4"><del>Div paragraph 4</del></p>
36+
</b>
37+
</body>
38+
</html>

HTML5 and CSS/HTML5 and CSS.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<Content Include="CSS Div.html" />
1414
<Content Include="CSS inline.html" />
1515
<Content Include="CSS selector, internal and external.html" />
16+
<Content Include="CSS text.html" />
1617
<Content Include="entity.html" />
1718
<Content Include="favicon.ico" />
1819
<Content Include="First Style.css" />

0 commit comments

Comments
 (0)