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 Fonts | Loop and Break

HTML Fonts

Controlling Fonts with Styles

Earlier available font tag is deprecated and for changing fonts we use font style as a css attributes. Consider the following style

<html>
<body>
<h1 style="font-family:verdana">font is verdana</h1>
<p style="font-family:courier">font is courier</p>
</body>
</html>

Font Size

<html>
<body>
<h1 style="font-size:18px;">A heading</h1>
<p style="font-size:24px;">A paragraph</p>
</body>
</html>

Font Color

<html>
<body>
<p style="color:red">Text in red</p>
</body>
</html>

Font, Font Size, and Font Color

<html>
<head>
<title>fonts</title>
</head>
<body>
<p style="font-size:16px; font-family:Verdana; color:#093"> 
demonstration of iframes</p>
</body>
</html>
Share

You may also like...