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

HTML Introduction

HTML Hello world

Consider the following example for HTML hello world example

<html>
<head>
<title>First Page</title>
</head>
<body>
Hello World
</body>
</html>

The details of above code are as under : –

1. <html>> : the root HTML document starting here
2. <head> : this section will not reflected in html page but used to add other attributes and filed required by document to process.
3. <title> : used to define title of the page (reflected in your browser tab title)
4. </title> : the closing title tag
5. </head> : the closing head tag
6. <body> : the actual page starts here
7.  Hello World : The content reflected in page
8. </body> : Close the document body
9.  </html> : close the HTML document definition.

Share

You may also like...