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
10 changes: 8 additions & 2 deletions HTML Basic/HTML/Chapter1_6.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<title>Document</title>

<style>
<-- internal styling -->
#header {
background-color:black;
color:white;
Expand Down Expand Up @@ -42,12 +43,15 @@
<h1>City Gallery</h1>
</div>


<main>
<div id="nav">
London<br>
Paris<br>
Tokyo<br>
</div>

<section>
<div id="section">
<h1>London</h1>
<p>
Expand All @@ -59,9 +63,11 @@ <h1>London</h1>
its history going back to its founding by the Romans, who named it Londinium.
</p>
</div>

</section>
</main>

<div id="footer">
Copyright © W3Schools.com
</div>
</body>
</html>
</html>