In week 1 I have learned:
Before taking this course, I created some blogs by using some CMSs such as Joomla and WordPress. My html knowledge is limited but I can play with CSS a little. Using some YouTube tutorials I can also create simple text effects. The piece below, except for the button styles, is the part that I can remember without help.
- How to use Visual Studio Code | Open with Live Server
- Difference between old html and html5 .
- How to add <title> tag so that I can see it in the browser tab
- I have also learned <p> and <h> tags. There are only 6 heading tags and H1 is the most important one.
- How to link a css file to my html
- Editing some buttons in my css stylesheet.
<!DOCTYPE html>
<html>
<head>
<title>Html day 3 </title>
</head>
<body>
<p>This is a paragraph tag example.</p>
<h1>H1 tag</h1>
<h2>H2 tag</h2>
<button class=“button button1”> <a href=“https://youtube.com” target=“_blank”>Shadow Button </a></button>
<button class=“button button2”><a href=“https://youtube.com” target=“_blank”>Shadow Button Hover </a></button>
</body>
<link rel=“stylesheet” type=“text/css” href=“style3.css”>
</html>