Page 196 - Webapplication11_C11_Flipbook
P. 196
<style>
body
{ background-color: white;}
h1
{ color: blue; font-size: 20px;
font-family: courier; font-style: italic;}
</style>
</head>
<body>
<h1>Machine Learning for Beginners</h1>
<p>Machine learning (ML) is a sort of artificial intelligence (AI) that allows
software applications
to improve their prediction accuracy without being expressly designed to do so.
In order to forecast new output values, machine learning algorithms use historical
data as input. </p>
</body>
</html>
Inline Style Sheet
An inline style may be used to apply a unique style for a single element. Add the style property to the relevant element
to use inline styles. Any CSS property can be included in the style attribute.
Example:
<!DOCTYPE html>
<html>
<body>
<h1 style="color:blue;text-align:center;">Welcome!</h1>
<p style="color:red;">We take great pleasure in organizing picnics!</p>
</body>
</html>
194 Touchpad Web Applications-XI

