<!DOCTYPE html> <html> <head> <title>Sumit Portfolio</title> </head> <body> <!-- Home Page Section --> <section id="home"> <h1>My Portfolio</h1> <p>Hi,I am Sumit , a developer dedicated to creating amazing web applications that make a difference.</p> </section> <!-- About Me Section --> <section id="about"> <h2>About Me</h2> <img src="" alt=""> <img> <p>I'm a web developer. I specialize in front-end and back-end development, with a strong focus on the following technologies:</p> <ul> <li>HTML5</li> <li>CSS5</li> <li>Excel</li> </ul> </section> <!-- resume Section ================================================== --> <section id="resume" class="grey-section"> <div class="row section-intro"> <div class="col-twelve"> <h3>Resume</h3> <h1>My Qualifications</h1> </div> <h2>Education</h2> </div> <!-- /resume-header --> <div class="timeline-header"> <h3>Bachelor's Degree</h3> <p>2023</p> </div> <div class="timeline-content"> <h4>M.D. University</h4> <p>Currently completing Degree In bachelor's of computer applications from M.D University,Rohtak</p> </div> </div> <!-- /timeline-block --> <section id="services"> <div class="overlay"></div> <div class="row section-intro"> <div class="col-twelve"> <h3>Services</h3> <p class="lead"></p>Some of my services that I am able to provide.</p> </div> </div> <!-- /section-intro --> <div class="row services-content"> <div id="owl-slider" class="owl-carousel services-list"> <div class="service"> <span class="icon"><i class="icon-earth"></i></span> <div class="service-content"> </div> <!-- /service --> <div class="service"> <span class="icon"><i class="icon-chat"></i></span> <div class="service-content"> <ul> <Li>Webdesign</Li> <li>graphic design</li> <li>developer</li> </ul> <!-- Contact Section --> <section id="contact"> <h2>Contact Me</h2> <p>If you want to hire me please Contact:</p> <ul> <div class="row section-intro"> <div class="col-twelve"> <a href="#contact" title="Hire Me" class="button stroke smoothscroll">Hire Me .</a> </div> </div> <h3>Fill this form for contact</h3> </div> <!-- /section-intro --> <div class="row contact-form"> <div class="col-twelve"> <!-- form --> <form name="contactForm" id="contactForm" method="post" action=""> <fieldset> <div class="form-field"> <input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required=""> </div> <div class="form-field"> <input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required=""> </div> <div class="form-field"> <input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value=""> </div> <div class="form-field"> <textarea name="contactMessage" id="contactMessage" placeholder="message" rows="10" cols="50" required=""></textarea> </div> <div class="form-field"> <button class="submitform">Submit</button> <div id="submit-loader"> <div class="text-loader">Sending...</div> <div class="s-loader"> <div class="bounce1"></div> <div class="bounce2"></div> <div class="bounce3"></div> </div> </div> </div> </fieldset> </form> <!-- Form End --> <!-- contact-warning --> <div id="message-warning"> </div> <!-- contact-success --> <div id="message-success"> <i class="fa fa-check"></i>Your message was sent, thank you!<br> </div> </div> <!-- /col-twelve --> </div> <!-- /contact-form --> <li>Email: <a href="[email protected]">[email protected]</a></li> <li>Contact No:9350916036 </li> <!-- <li>LinkedIn: <a href="[Your LinkedIn Profile URL]">Connect on LinkedIn</a></li> --> <!-- <li>GitHub: <a href="[Your GitHub Profile URL]">Visit my GitHub</a></li> --> </ul> </section> </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>