<table class=MsoNormalTable border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100.0%;mso-cellspacing:0cm;background:#E9E8E9;border:solid #E9E8E9 1.0pt; mso-border-alt:solid #E9E8E9 .75pt;mso-yfti-tbllook:1184;mso-padding-alt:3.0pt 3.0pt 3.0pt 3.0pt'> <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'> <td style='border:solid #E9E8E9 1.0pt;mso-border-alt:solid #E9E8E9 .75pt; padding:7.5pt 7.5pt 7.5pt 7.5pt'> <p><strong><span style='font-size:9.0pt;font-family:"Arial",sans-serif'>Nota:</span></strong><span style='font-size:9.0pt;font-family:"Arial",sans-serif;color:black;mso-color-alt: windowtext'> El estado de los exámenes corresponde al último que aparece en nuestros registros. Los siguientes estados no permiten el envío por correo:</span><span style='font-size:9.0pt;font-family:"Arial",sans-serif'><o:p></o:p></span></p> <ul type=disc> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt: auto;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt'><strong><span style='font-size:9.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family: "Times New Roman"'>En Proceso:</span></strong><span style='font-size: 9.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman"; color:black;mso-color-alt:windowtext'> El resultado del examen aún no está disponible para su impresión.</span><span style='font-size:9.0pt; font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt: auto;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt'><strong><span style='font-size:9.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family: "Times New Roman"'>No se entrega por internet:</span></strong><span style='font-size:9.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family: "Times New Roman";color:black;mso-color-alt:windowtext'> Se trata de resultados de exámenes que, independiente de su resultado, sólo pueden ser entregados al paciente en forma personal. Por favor acude directamente al mesón de Recepción de la Unidad de Toma de Muestra donde fuiste atendido.</span><span style='font-size:9.0pt;font-family:"Arial",sans-serif; mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></li> </ul> </td> </tr> </table>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>