Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions devops.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

dafkdjafkd
Comment on lines +6 to +7
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Remove stray text from the head; it’s invalid HTML and may cause parse/validation issues.

A bare text node inside <head> is not permitted and can trigger HTML parsing quirks and SEO/validator warnings. This looks accidental.

Apply this fix:

     
-    dafkdjafkd

If you intended a note, use an HTML comment instead:

-    dafkdjafkd
+    <!-- TODO: add relevant head metadata here -->

If you intended metadata/script, wrap it properly (e.g., <meta name="description" content="..."> or a <script> tag).

🤖 Prompt for AI Agents
In devops.html around lines 6 to 7, there is stray text "dafkdjafkd" inside the
<head> tag, which is invalid HTML and can cause parsing and validation issues.
Remove this bare text node entirely. If the text was meant as a note, replace it
with an HTML comment. If it was intended as metadata or script, wrap it properly
using appropriate tags like <meta> or <script>.

<title>TrainWithShubham</title>
<link rel="shortcut icon" type="image/png" href="favicon.png">
<!--LOAD BOOTSTRAP JQUERY-->
Expand Down