This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This is invalid. | |
Do not nest a section tag | |
inside a paragraph tag. --> | |
<footer> | |
<div class="content-wrapper"> | |
<div class="float-left"> | |
<p>© @DateTime.Now.Year - new guy blogs | |
<section id="login"> | |
@Html.Partial("_LoginPartial") | |
</section> | |
</p> | |
</div> | |
</div> | |
</footer> | |
<!-- This is valid --> | |
<footer> | |
<div class="content-wrapper"> | |
<div class="float-left"> | |
<p>© @DateTime.Now.Year - new guy blogs | |
</p> | |
<section id="login"> | |
@Html.Partial("_LoginPartial") | |
</section> | |
</div> | |
</div> | |
</footer> |
No comments:
Post a Comment
Comment is free.