Strong 태그를 사용하여 텍스트를 굵게 만들기
텍스트를 굵게 만들려면 strong 태그를 사용할 수 있습니다. 이것은 종종 텍스트에 주의를 기울이고 중요함을 상징하는 데 사용됩니다. Strong 태그를 사용하여 브라우저는 요소에 font-weight: bold; 를 적용합니다.
P 태그안의 'Stanford University' text 를 Strong 태그로 묶으시오. (period를 묶지말 것)
<style>
h4 {
text-align: center;
height: 25px;
}
p {
text-align: justify;
}
.links {
text-align: left;
color: black;
}
.fullCard {
width: 245px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 10px 5px;
padding: 4px;
}
.cardContent {
padding: 10px;
}
.cardText {
margin-bottom: 30px;
}
</style>
<div class="fullCard">
<div class="cardContent">
<div class="cardText">
<h4>Google</h4>
<p>Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at <strong>Stanford University</strong>.</p>
</div>
<div class="cardLinks">
<a href="https://en.wikipedia.org/wiki/Larry_Page" target="_blank" class="links">Larry Page</a><br><br>
<a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
</div>
</div>
</div>