Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 02.HTML-structure.html #25

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 13 additions & 8 deletions Topics/02. HTML-Fundamentals/demos/02.HTML-structure.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,22 @@
img {
width: 150px;
}
</style>
<script>
function onClick() {
alert("Clicked");
a {
font-size:1.5rem;
color:grey;
}
</script>
</style>
</head>
<body>
<h1>Hello Pesho!</h1>
<a href="https://google.com">go to Google</a>
<h1>Hello World!</h1>
<a href="https://google.com">Google Search</a>
<hr width="95%" size="3" />
<img src="images/SEB-Ninja.png" onclick="onClick()" />
<img src="images/SEB-Ninja.png"/>

<script>
document.querySelector('img').addEventListener('click') =>{
alert("welcome to google");
}
</script>
</body>
</html>
17 changes: 15 additions & 2 deletions Topics/02. HTML-Fundamentals/demos/03.Common-elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
</head>
<body>
<a href="http://www.telerik.com/" title="Telerik">Link to Telerik Web site</a>
<img src="images/seb-ninja.png" width="50" alt="logo" />
<img src="images/seb-ninja.png" width:"50px" alt="logo" />
This text is <em>emphasized.</em>
<br />new line<br />
This one is <strong>more emphasized.</strong>
This one is <strong>Strong.</strong>
<i>this is an italic text </i>
<b>this is a bold text </b>
<h1>Heading 1</h1>
<h2>Sub heading 2</h2>
<h3>Sub heading 3</h3>
Expand All @@ -28,6 +30,17 @@ <h6>Sub heading 6</h6>
<li>Orange</li>
<li>Grapefruit</li>
</ul>
<ul style="list-style-type:circle;">
<li> Coffee </li>
<li> Tea </li>
<li> Chocolate </li>
</ul>
<ul style="list-style-type:square;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

<dl>
<dt>HTML</dt>
<dd>A markup language</dd>
Expand Down