Can't say i have ever used a sub.
perhaps a span would work, personally i would make it an h1 and an h3...
perhaps a span would work, personally i would make it an h1 and an h3...
<html>
<head>
<style type="text/css">
.fame {color:#0000ff;font-family:chiller;font-size:50px}
</style>
</head>
<body style="background-color:lightGreen;">
<h1 style="font-family:Chiller;color:Red;font-size:100px;text-align:center">Mylapally Ravi Kumar<span class="fame">Neene Raju</span></h1>
<hr />
<img src="https://lh4.googleusercontent.com/_qFTL5hCj8g0/TXfgGSADISI/AAAAAAAAEyA/lSAFVJpFBE4/IMG0159A.jpg"
</body>
</html>
<html>
<body style="background-color:lightGreen;">
<h1 style="font-family:Chiller;color:Red;font-size:80px;text-align:center">Mylapally Ravi Kumar<sub style="font-family:veranda;color:blue;font-size:20px;">Neene Raju</sub></h1>
<hr />
<img src="https://lh4.googleusercontent.com/_qFTL5hCj8g0/TXfgGSADISI/AAAAAAAAEyA/lSAFVJpFBE4/IMG0159A.jpg">
</body>
</html>
<html>
<head>
<style type="text/css">
h1{
font-family:Chiller;
color:Red;
font-size:100px;
text-align:center
}
h1 sub {
color:#0000ff;
font-family:chiller;
font-size:50px;
}
</style>
</head>
<body style="background-color:lightGreen;">
<h1>Mylapally Ravi Kumar<sub>Neene Raju</sub></h1>
<hr />
<img src="https://lh4.googleusercontent.com/_qFTL5hCj8g0/TXfgGSADISI/AAAAAAAAEyA/lSAFVJpFBE4/IMG0159A.jpg" alt="This is an Image"/>
</body>
</html>
Thought i would jump in one last time.
I will apologize ahead of time as a didn't quite understand that by subscript you actually wanted subscript....
anyway here is my solution:
HTML:<html> <head> <style type="text/css"> h1{ font-family:Chiller; color:Red; font-size:100px; text-align:center } h1 sub { color:#0000ff; font-family:chiller; font-size:50px; } </style> </head> <body style="background-color:lightGreen;"> <h1>Mylapally Ravi Kumar<sub>Neene Raju</sub></h1> <hr /> <img src="https://lh4.googleusercontent.com/_qFTL5hCj8g0/TXfgGSADISI/AAAAAAAAEyA/lSAFVJpFBE4/IMG0159A.jpg" alt="This is an Image"/> </body> </html>
I manage a 1000+ page website for my school.... without css i would be... :4-thatsbalol, I'm not a big fan of CSS, imbedded or otherwise. However, with websites as complex as I program, I'm glad it even exists, and I'm glad I could help.
As you develop your programming knowledge you'll come to appreciate the benefits of CSS and the attributes in a tag commonly associated with it. ^^