<!DOCTYPE html> <html dir="ltr" lang="en"> <head> <!-- Your head content here --> </head> <body> <!-- Container for PDF UI components --> <div id="ui-container"> <!-- React-based PDF UI components go here --> </div> <!-- Container for modal --> <div id="modal-root"> <!-- Modal content goes here if exists --> </div> <div id="sizer"></div> <!-- Container for document --> <div id="document-container"> <div id="embed-border"></div> <embed id="plugin" type="application/x-google-chrome-pdf" original-url="file:///C:/Users/harsh/AppData/Local/Microsoft/Windows/INetCache/IE/L9UGHKNR/1704719235wpdm_APPLIED-PHYSICS-JULY-AUG-2023[1].pdf" src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/c8f843b c-fff0-4350-8f8e-c094a8f43b2e" background-color="0xFF333333" first-page-separator="4" style="top: 41px; min-height: calc(100% - 41px);" javascript="allow" stream_timestamp="1641054388423" embed-top-offset="41" width="100%" height="100%" full-frame pdfdigsigpolicyenabled pdfviewrecoveryenabled pdffreetextenabled></embed> </div> <!-- Container for internal document --> <div id="internal-document-container"> <embed id="pdf-embed" type="application/x-google-chrome-pdf" src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/c8f843 bc-fff0-4350-8f8e-c094a8f43b2e" original-url="file:///C:/Users/harsh/AppData/Local/Microsoft/Windows/INetCache/IE/L9UGHKNR/1 704719235wpdm_APPLIED-PHYSICS-JULY-AUG-2023[1].pdf" background-color="4281545523" embed-top-offset="41" javascript="allow" full-frame pdfdigsigpolicyenabled pdffreetextenabled pdfviewrecoveryenabled pdfoopifscrollbarenabled pdffastscrollenabled stream_timestamp="1641054388423" first-page-separator="4" class="absolute-embed" height="100%" width="100%"> </div> <!-- Container for PDF content view UI components --> <div id="pdf-content-view-root" class="pdf-content-view-root-relative"> <!-- React-based PDF content view UI components go here --> </div> <!-- PDF error reporting script --> <script src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/edge pdf/pdf-error-reporting.js"></script> <!-- PDF internal plugin bundle --> <script src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/edge_pdf/dist/pdf_internal_plugin.bundle.js"></script> <!-- Scripts for PDF functionality --> <!-- These scripts are initialized when needed --> <script src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/edge_pdf/dist/lib_react.chunk.js"></script> <script src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/edge_pdf/dist/lib_fast_deprecated.chunk.js"></script> <script src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/edge_pdf/dist/lib_fast_web_components.chunk.js"></script> <script src="chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/edge_pdf/dist/pdf_content_view.bundle.js"></script> <!-- Additional scripts --> <script src="../setup.js"></script> <script src="dist/lib_fast_deprecated.chunk.js"></script> <script src="dist/lib_fast_web_components.chunk.js"></script> <script src="dist/lib_react.chunk.js"></script> <script src="dist/pdfui_component.chunk.js"></script> <script src="dist/pdf.bundle.js"></script> </body> </html>
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>