-
-
Notifications
You must be signed in to change notification settings - Fork 475
London 9-Leila Farsani-HTML / CSS Project 1-Week 2 #270
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,17 +6,60 @@ | |
| name="viewport" | ||
| content="width=device-width, initial-scale=1, shrink-to-fit=no" | ||
| /> | ||
| <title>My Blog</title> | ||
| <link | ||
| href="//fonts.googleapis.com/css?family=Roboto:400,500,300" | ||
| rel="stylesheet" | ||
| type="text/css" | ||
| /> | ||
| <link rel="stylesheet" href="css/style.css" /> | ||
| <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> | ||
| <title>Mathsli</title> | ||
| </head> | ||
| <body> | ||
| <!-- Add your HTML markup here --> | ||
| <!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc --> | ||
| <header> | ||
| <h1>Mathsli</h1> | ||
| <h3>Do you love Maths? </h3> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's no content below this heading, so it makes more sense as a |
||
| <h5>Or Maybe...?</h5> | ||
| <p>Here is the right place for you to be anyway.</p> | ||
| <nav> | ||
| <ul class="list"> | ||
| <li class="items"><a class="links" href="#"> About Mathli</a></li> | ||
| <li class="items"><a class="links" href="#"> Testimonials</a></li> | ||
| <li class="items"><a class="links" href="#"> Contact</a></li> | ||
| <li class="items"><a class="links" href="#"> Login</a></li> | ||
| </ul> | ||
| </nav> | ||
| </header> | ||
| <main> | ||
| <section> | ||
| <article class="article1"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| <h1>About Mathsli</h1> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There should only be one |
||
| <h4>Mathsli helps you to learn and love Maths.</h4> | ||
| <img src="https://clipartion.com/wp-content/uploads/2015/11/what-are-the-top-biggest-brain-damaging-habits-magical-maths.jpg" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For a content image like this, set alt text to something that describes the image (eg 'A picture of a human brain working like a mechanical machine' or something) |
||
| alt=""> | ||
| <h2> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is a good choice & correct as |
||
| We are here to help. | ||
| </h2> | ||
| <button><a href="#">More About US</a></button> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's invalid to wrap |
||
| <h3> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This isn't a heading, it doesn't have content after it, better as a |
||
| All our teachers are professionals with strong academic backgrounds who | ||
| enjoy helping students understand concepts deeply, solving challenging questions and also familiar them with | ||
| the beauty of mathematics. | ||
| </h3> | ||
| <h4> Thank you for visiting our website. | ||
| Please write down any comment you have in the box bellow. | ||
| </h4> | ||
| </article> | ||
| <section> | ||
| </main> | ||
| <textarea name="comment" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Every form element should have a |
||
| id="comments" | ||
| class="box" | ||
| placeholder="Enter your comment here..."> | ||
| </textarea> | ||
| <footer> | ||
| <hr> | ||
| Contact us for more details from the above contact section. | ||
| </footer> | ||
| </body> | ||
| </html> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will have no effect