WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('in-progress') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('pending') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

HTML Text Formatting | Loop and Break

HTML Text Formatting

Text Formatting

The following example demonstrates how you can format text in an HTML document.

<html>
<head>
<title>HTML Formatting</title>
</head>
<body>
	<p>
		<b>bold text</b>
	</p>
	<p>
		<strong>strong text</strong>
	</p>
	<p>
		<em>emphasized text</em>
	</p>
	<p>
		<i>italic text</i>
	</p>
	<p>
		<small>small text </small>
	</p>
	<p>
		H<sub>2</sub> O <sup>2</sup>
	</p>
</body>
</html>

Deleted and Inserted Text

This example demonstrates how to mark a text that is deleted (strikethrough) or inserted (underscore) to a document.

<html>
<head>
<title>HTML deleted and insert</title>
</head>
<body>
	<p>
		a dozen is
		<del>twenty</del>
		<ins>twelve</ins>
		pieces
	</p>
	<p>
		Most browsers will
		<del>overstrike</del>
		deleted text and
		<ins>underscore</ins>
		inserted text.
	</p>
	<p>Some older browsers will display deleted or inserted text as plain text.
	</p>
</body>
</html>
Share

You may also like...