Moozonian

💻 Developer Nexus:  

GitHub

matthewlein/jQuery-widowFix

Widow Fix is a jQuery plugin to fix widows, or orphans, or whatever you call them—those single words on their own line. It does this by adding a   (non-breaking space) in between the last 2 words. It's super lite and easy to use!

⭐ 86 | 🍴 22
GitHub

chikitang/A

!DOCTYPE html> Your Repositories

chikitang  /  
Tip: Type # to search pull requests
Type ? for help and tips
Tip: Type # to search issues
Type ? for help and tips
Tip: Type # to search discussions
Type ? for help and tips
Tip: Type ! to search projects
Type ? for help and tips
Tip: Type @ to search teams
Type ? for help and tips
Tip: Type @ to search people and organizations
Type ? for help and tips
Tip: Type > to activate command mode
Type ? for help and tips
Tip: Go to your accessibility settings to change your keyboard shortcuts
Type ? for help and tips
Tip: Type author:@me to search your content
Type ? for help and tips
Tip: Type is:pr to filter to pull requests
Type ? for help and tips
Tip: Type is:issue to filter to issues
Type ? for help and tips
Tip: Type is:project to filter to projects
Type ? for help and tips
Tip: Type is:open to filter to open content
Type ? for help and tips
We’ve encountered an error and some results aren't available at this time. Type a new search or try again later.
No results matched your search
Search for issues and pull requests # Search for issues, pull requests, discussions, and projects # Search for organizations, repositories, and users @ Search for projects ! Search for files / Activate command mode > Search your issues, pull requests, and discussions # author:@me Search your issues, pull requests, and discussions # author:@me Filter to pull requests # is:pr Filter to issues # is:issue Filter to discussions # is:discussion Filter to projects # is:project Filter to open issues, pull requests, and discussions # is:open
Set status

Edit status

Could not update your status, please try again.

When others mention you, assign you, or request your review, GitHub will let them know that you have limited availability.

Clear status
Set status

Edit status

Could not update your status, please try again.

When others mention you, assign you, or request your review, GitHub will let them know that you have limited availability.

Clear status
  • Joined Jun 7, 2022
New
  • A robot powered training repository 🤖

    HTML MIT License Updated Jun 7, 2022

⭐ 52 | 🍴 15
GitHub

Ronald106/Surviv.io

surviv.io - 2d battle royale game

HTML p tag
Tutorials References Exercises Videos Pro NEW Menu

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 »



⭐ 32 | 🍴 0