Skip to content

Fix HTML structure and update submission guidelines#706

Merged
Kritika75 merged 1 commit intomainfrom
Kritika75-patch-7
Mar 10, 2026
Merged

Fix HTML structure and update submission guidelines#706
Kritika75 merged 1 commit intomainfrom
Kritika75-patch-7

Conversation

@Kritika75
Copy link
Copy Markdown
Owner

Contributor Info

Your Name:


Related Issue

Fixes: #Issue Number


Description


Screenshots / Video (Before & After)

Before:

After:


Checklist

  • Mentioned the issue number in this PR.
  • Created a separate branch (not main) before committing.
  • Changes tested and verified.
  • Attached necessary screenshots/videos for clarity.
  • Code is clean, readable, and commented where necessary.
  • No merge conflicts.
  • Follows the design/style guide of the project.
  • Added contributor name above.
  • Confirmed that the feature fits well with the latest updated version of the website.
  • Ensured images and layout are responsive (look good on both desktop and small screens like phones).

Extra Notes (Optional)


Copilot AI review requested due to automatic review settings March 10, 2026 09:23
@github-actions
Copy link
Copy Markdown

Thanks for creating a PR for your Issue! ☺️

We'll review it as soon as possible.
In the meantime, please double-check the file changes and ensure that all commits are accurate.

If there are any unresolved review comments, feel free to resolve them. 🙌🏼

@Kritika75 Kritika75 merged commit c8807fb into main Mar 10, 2026
3 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR updates the “Submission Guidelines” section in submission.html, primarily to reflect that Issue 5 (ONSRA) submissions are now closed and to hide the previously “open submissions” details.

Changes:

  • Updates the visible status line from “Submissions are now open” to “Submissions are now closed”.
  • Comments out the “currently accepting submissions” details block.
  • Minor formatting/whitespace adjustments near the end of the file.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.


<br /> -->
<br />
<div style="text-align: left;">
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

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

The <div style="text-align: left;"> is placed inside a <p class="intro">, which is invalid HTML (a <p> can’t contain block-level <div>). Browsers will auto-close the <p> early, leading to unpredictable layout. Close the <p> before starting this <div> (or replace the <p> with a <div> and use CSS for styling).

Suggested change
<div style="text-align: left;">
</p>
<div style="text-align: left;">

Copilot uses AI. Check for mistakes.
Thank you to everyone sharing their work with us. Further updates will be communicated via email.

</div>
</div> -->
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

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

The closing </div> for the left-aligned block is currently inside an HTML comment (</div> -->), so the <div style="text-align: left;"> opened above is never closed. This will break the DOM structure for the rest of the page; move the closing </div> outside the comment (or comment out the opening <div> as well).

Suggested change
</div> -->
-->
</div>

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants