(B) Font size change (< span style='font-size:27px;'>):  Example2 
(C) Font Style Change (< span style='font-family:Brush Script MT;'>): Example3 
| Here is Brush Script MT |
| Here is Andale Mono Regular |
| Here is Comic Sans MS |
| Here is Times New Roman |
| Here is Zapfino |
| Here is American Typewriter |
| Here is Marker Felt |
| Here is Helvetica |
| Here is SignPainter |
| Here is Party LET |
| Here is Savoye LET |
Don't forget images & Emojis...!
   ⋮,😈, 🗽, 🚃, 🎥,°
CREATE TABLE someEg(
   `id` int(11) NOT NULL AUTO_INCREMENT,
   `day` varchar(15) NOT NULL,
   `date` varchar(3) NOT NULL,
   `month` varchar(12) NOT NULL,
   `year` varchar(4) NOT NULL,
   `sys` varchar(3) NOT NULL,
   `dia` varchar(3) NOT NULL,
   `pul` varchar(3) NOT NULL,
   `note` varchar(350),
   PRIMARY KEY (id)
);
In order to take advantage of the auto-incrementing, do not supply a value for that column in the INSERT INTO. The database will supply a value for you:
INSERT INTO someEg(day, date, month, year, sys, dia, pul, note) VALUES
('Sunday', '01', '09', '2021', '140', '90', '77', 'Systolic & Diastolic.');
                        
Emojis:*Vertical Elipsis (

): ⋮
*Purple Devil-Head (

): 😈
*Statue of Liberty Head (

): 
 🗽
*Short Street-Car (

): 
 🚃
*Movie Camera ( 

): 
 🎥
*Degree Symbol (    

): 
°
Back button code:
< div id='backBtnImg'>
Return...
< form action='javascript:history.go(-1)' method='post'>
< img src='localizations2/arrowLeft.png' height='100' onClick='submit()' />
< /form>
< /div>
-OR-
< div id='theBackBtn'>
< form action='javascript:history.go(-1)' method='post'>
< input type='submit' value='Some Prompt Here'>
< /form>
< /div>