<section>
<div>
<p>Line one</p>
<strong>Only one bold</strong>
<p>Line two</p>
<i>I'm italic</i>
<p>Line three</p>
<strike>Something else</strike>
<p>Line four</p>
</div>
<div>
<img src="https://images.unsplash.com/photo-1597589827317-4c6d6e0a90bd?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8c3F1YXJlfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=100&q=60" />
<br />
<img src="https://images.unsplash.com/photo-1615485737651-580c9159c89a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTd8fHNxdWFyZXxlbnwwfHwwfHw%3D&auto=format&fit=crop&w=100&q=60" alt='nuts' />
</div>
</section>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 1rem;
line-height: 3.5rem;
}
section {
gap: 4rem;
display: flex;
}
div :not(strong, i) {
color: hotPink;
}
img:not([alt]) {
outline: 10px solid red;
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.