font Text

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>

.p{
font-family: sans-serif;
font-size: 21px;
font-weight: 500;
font-style: italic;
font-variant: all-small-caps;
color: #b51313;
/* direction: rtl; */
/* letter-spacing: 4px; */
word-spacing: 21px;
text-indent: 29px;
font-family: Calibri, Arial;
font-size: 14px;
text-align: center;
/* text-decoration: line-through; */
text-transform: capitalize;
}


p{
white-space: pre-wrap;}

h1{
color: red;
text-shadow: 0px 28px 5px black;
}
img{
border: solid 1px red;
border-top-right-radius: 10px;
opacity: 0.5;
}
</style>
</head>
<body>
<h1>Computer</h1>
<p >
You should in any case not have the need to fiddle
around in the Build Path property of the project.
You should above all never manually
copy/download/move/include the individual
servletcontainer-specific libraries
like servlet-api.jar, jsp-api.jar, el-api.jar, j2ee.jar, javaee.jar, etc. It would only lead to future portability, compatibility, classpath and maintainability troubles, because your webapp would not work when it's deployed to a servletcontainer of a different make/version than where those libraries are originally obtained from.
</p>

<img src="img/goldencar.png" >


</body>
</html>

Comments