Day 49
A set lists to prove to myself that html ignores white space.
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<h4>My color list</h4>
<ol>
<li>Red</li>
<li>Green</li>
<li>Blue
<ul>
<li>Cobalt</li>
<li>Midnight</li>
<li>Cerulian</li>
</ul>
</li>
</ol>
<!-- The sam nested list works as a single line of code. This prooves that html does not care about white space or lines to reder a page. -->
<ol><li>Red</li><li>Green</li><li>Blue<ul><li>Cobalt</li><li>Midnight</li><li>Cerulian</li></ul></li></ol><br>
<ul>
<li><strong>Red</strong></li>
<li>Green</li>
<li>Blue</li>
</ul>
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<h4>My color list</h4>
<ol>
<li>Red</li>
<li>Green</li>
<li>Blue
<ul>
<li>Cobalt</li>
<li>Midnight</li>
<li>Cerulian</li>
</ul>
</li>
</ol>
<!-- The sam nested list works as a single line of code. This prooves that html does not care about white space or lines to reder a page. -->
<ol><li>Red</li><li>Green</li><li>Blue<ul><li>Cobalt</li><li>Midnight</li><li>Cerulian</li></ul></li></ol><br>
<ul>
<li><strong>Red</strong></li>
<li>Green</li>
<li>Blue</li>
</ul>
Comments
Post a Comment