xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<style>
.my-text {
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<p class="my-text">This text has a custom font.</p>
</body>
</html>
xxxxxxxxxx
<font face="Arial" size="20px" color="#FF7A59">Your text here.</font>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<style>
/* CSS styles */
p {
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<p>This is a paragraph with custom font!</p>
</body>
</html>