Use the text-transform Property to Make Text Uppercase
Summary
The text-transform property in CSS is used to change the appearance of text.
lowercase: “transform me”
uppercase: “TRANSFORM ME”
capitalize: “Transform Me”
initial: Use the default value
inherit: Use the text-transform value from the parent element
none: Default: Use the original text
Final Code
<style>h4{text-align:center;background-color:rgba(45,45,45,0.1);padding:10px;font-size:27px;text-transform:uppercase;}p{text-align:justify;}.links{text-align:left;color:black;opacity:0.7;}#thumbnail{box-shadow:010px20pxrgba(0,0,0,0.19),06px6pxrgba(0,0,0,0.23);}.fullCard{width:245px;border:1pxsolid#ccc;border-radius:5px;margin:10px5px;padding:4px;}.cardContent{padding:10px;}.cardText{margin-bottom:30px;}</style><divclass="fullCard"id="thumbnail"><divclass="cardContent"><divclass="cardText"><h4>Alphabet</h4><hr><p><em>...they were <u>Ph.D. students</u> at <strong>Stanford University</strong>.</em></p></div><divclass="cardLinks"><ahref="https://en.wikipedia.org/..."target="_blank"class="links">Larry Page</a><br><br><ahref="https://en.wikipedia.org/..."target="_blank"class="links">Sergey Brin</a></div></div></div>