Skip to content
Closed
Changes from 4 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
50 changes: 47 additions & 3 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<header>
<h1>Wireframe</h1>
<p>
This is the default, provided code and no changes have been made yet.
Changes have been made here.
</p>
</header>
<main>
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Consider having a single main tag and all articles inside that one main tag than repeating the main tag. Otherwise, everything else looks well

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

@codeschris Kindly check corrected code.

<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<h2>Title 1</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
Expand All @@ -26,7 +26,51 @@ <h2>Title</h2>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
Changes have been made here.
</p>
</footer>
<header>
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

The header is never below the footer. Check on this

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

@codeschris Kindly check, I have deleted the header and footer.

<h1>Wireframe</h1>
<p>
Changes have been made here.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title 2</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
</p>
<a href="">Read more</a>
</article>
</main>
<footer>
<p>
Changes have been made here.
</p>
</footer>
<header>
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

The header should be one across the entire page. Check on this and make changes

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

@codechris I have also resolved this issue.

<h1>Wireframe</h1>
<p>
Changes have been made here.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title 3</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
</p>
<a href="">Read more</a>
</article>
</main>
<footer>
Comment thread
Maryanne-K marked this conversation as resolved.
<p>
Changes have been made here.
</p>
</footer>
</body>
Expand Down
Loading