Notes
myInfo.html
<template>
<div class="my-div">
<p class="my-name-label">Name: <span class="my-name">John Carter</span></p>
<p class="my-title-label">Title: <span class="my-title-style">System Administrator</span></p>
</div>
</template>
myInfo.css
.my-div{
background-color: azure;
border: 1px solid gray;
border-radius: 5px;
padding:10px;
}
.my-name-label {
color:rgb(232, 70, 16);
font-size: larger;
}
.my-title-label {
color:rgb(5, 67, 84);
font-size:medium;
}
.my-name {
font-style: italic;
}
.my-title{
font-style: italic;
font-weight: bold;
}
Preview:
Video
Video does not exists.