💻 Developer Nexus: Follow on LinkedIn, opens in a new tab.
GitHub
hiteshsuthar01/OK-
HTML Reference
HTML by Alphabet HTML by Category HTML Browser Support HTML Attributes HTML Global Attributes HTML Events HTML Colors HTML Canvas HTML Audio/Video HTML Character Sets HTML Doctypes HTML URL Encode HTML Language Codes HTML Country Codes HTTP Messages HTTP Methods PX to EM Converter Keyboard ShortcutsHTML Tags
<!--> <!DOCTYPE> <a> <abbr> <acronym> <address> <applet> <area> <article> <aside> <audio> <b> <base> <basefont> <bdi> <bdo> <big> <blockquote> <body> <br> <button> <canvas> <caption> <center> <cite> <code> <col> <colgroup> <data> <datalist> <dd> <del> <details> <dfn> <dialog> <dir> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <font> <footer> <form> <frame> <frameset> <h1> - <h6> <head> <header> <hr> <html> <i> <iframe> <img> <input> <ins> <kbd> <label> <legend> <li> <link> <main> <map> <mark> <meta> <meter> <nav> <noframes> <noscript> <object> <ol> <optgroup> <option> <output> <p> <param> <picture> <pre> <progress> <q> <rp> <rt> <ruby> <s> <samp> <script> <section> <select> <small> <source> <span> <strike> <strong> <style> <sub> <summary> <sup> <svg> <table> <tbody> <td> <template> <textarea> <tfoot> <th> <thead> <time> <title> <tr> <track> <tt> <u> <ul> <var> <video> <wbr>HTML <p> Tag
Example
A paragraph is marked up as follows:
<p>This is some text in a paragraph.</p> Try it Yourself » More "Try it Yourself" examples below.
Definition and Usage
The <p> tag defines a paragraph.
Browsers automatically add a single blank line before and after each <p> element.
Tip: Use CSS to style paragraphs.
Browser Support
| Element | |||||
|---|---|---|---|---|---|
| <p> | Yes | Yes | Yes | Yes | Yes |
Global Attributes
The <p> tag also supports the Global Attributes in HTML.
Event Attributes
The <p> tag also supports the Event Attributes in HTML.
ADVERTISEMENT
More Examples
Example
Align text in a paragraph (with CSS):
<p style="text-align:right">This is some text in a paragraph.</p> Try it Yourself » Example
Style paragraphs with CSS:
<html>
<head>
<style>
p {
color: navy;
text-indent: 30px;
text-transform: uppercase;
}
</style>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</body>
</html> Try it Yourself » Example
More on paragraphs:
<p>
This paragraph
contains a lot of lines
in the source code,
but the browser
ignores it.
</p> Try it Yourself » Example
Poem problems in HTML:
<p>
My Bonnie lies over the ocean.
My Bonnie lies over the sea.
My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me.
</p> Try it Yourself » Related Pages
HTML tutorial: HTML Paragraphs
HTML DOM reference: Paragraph Object
Default CSS Settings
Most browsers will display the <p> element with the following default values:
Example
p {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
} Try it Yourself » ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT
×
Report Error
If you want to report an error, or if you want to make a suggestion, do not hesitate to send us an e-mail:
help@w3schools.com
×
Thank You For Helping Us!
Your message has been sent to W3Schools.
W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.
Copyright 1999-2022 by Refsnes Data. All Rights Reserved.
W3Schools is Powered by W3.CSS.
Copyright 1999-2022 by Refsnes Data. All Rights Reserved.
W3Schools is Powered by W3.CSS.


