This is how a card is constructed with header, paragraph, and a sample code.
This paragraph is in a paragraph tag.
A <p>
tag makes it a paragraph.
<div class="card" id="section_sample_formatting"> <div class="card-header"> <h3>How a Card is Made</h3> </div> <div class="card-content"> <p>This is how a card is constructed with header, paragraph, and a sample code. This paragraph is in a paragraph tag. A <code><p></code> tag makes it a paragraph.</p> <pre> This pre tag is for writing code such as HTML, CSS, JavaScript, C#, ASP.net, etc. </pre> </div> </div>
Notice how HTML tags can be encoded. The next tag below is an unordered list.
<
converts to <
.>
converts to >
.Here is a set of steps to perform. The <ol>
tag is numbered.
index.html
.index.html
file in a web browser.<p>Notice how HTML tags can be encoded. The next tag below is an unordered list.</p> <ul> <li><code>&lt;</code> converts to <code><</code>.</li> <li><code>&gt;</code> converts to <code>></code>.</li> </ul> <p>Here is a set of steps to perform. The <code><ol></code> tag is numbered.</p> <ol> <li>Write a web page in HTML.</li> <li>Save the file as <code>index.html</code>.</li> <li>Open the <code>index.html</code> file in a web browser.</li> </ol>