├── README.md
├── html_tutorial
├── about.css
├── about.html
├── app.js
├── file_path
│ ├── about.html
│ ├── css
│ │ └── style.css
│ ├── img
│ │ ├── google.jpg
│ │ ├── google.png
│ │ ├── googles.gif
│ │ ├── logo.jpg
│ │ └── logo.png
│ ├── index.html
│ └── js
│ │ └── app.js
├── google.jpg
├── google.png
├── googles.gif
├── index.html
├── logo.jpg
├── logo.png
├── pexels-pixabay-68507.jpg
├── style.css
└── viddeo.mp4
└── layout.png
/README.md:
--------------------------------------------------------------------------------
1 | # html-tutorial
2 |
3 | ## 📝 Description
4 | Welcome to the "Learn HTML in One Video" repository, I will try my best to teach you all about HTML. After completing this course, I hope you will be able HTML properly. This is a completely free course and it's now available on YouTube.
5 | - [👉 Learn HTML in One Video](https://youtu.be/BSvo4i5t-Kg)
6 |
7 |
8 | ## 🙋♀️ What is HTML?
9 | - HTML stands for Hyper Text Markup Language
10 | - HTML is not considered a programming language
11 | - HTML is the standard markup language for creating Web pages.
12 | - HTML elements tell the browser how to display the content
13 | - It's easy to learn
14 |
15 |
16 | ## ⏳ Prerequisite
17 | - 👉 Basic Computing skills
18 | - The first thing you should learn about HTML documents is the structure of web pages and how web pages are created. This will give you a clear indication of how a web page comes together. This is an insight you'll need to have for every website you build.
19 |
20 |
21 |
22 | ## 🎯 What to do with HTML?
23 | - **Web development**. Developers use HTML code to design how a browser displays web page elements, such as text, hyperlinks, and media files.
24 | - **Internet navigation**. Users can easily navigate and insert links between related pages and websites as HTML is heavily used to embed hyperlinks.
25 | - **Web documentation**. HTML makes it possible to organize and format documents, similarly to Microsoft Word.
26 |
27 |
28 | ## 🧑💻 Contributors
29 | - [@Ali Hossain](https://github.com/shovoalways/)
30 |
31 |
32 |
33 | ## 🥰 Follow me
34 | - [@Github](https://github.com/shovoalways/)
35 | - [@Facebook](https://facebook.com/shovoalways/)
36 | - [@Twitter](https://twitter.com/shovoalways/)
37 | - [@Instagram](https://instagram.com/shovoalways/)
38 |
--------------------------------------------------------------------------------
/html_tutorial/about.css:
--------------------------------------------------------------------------------
1 | * {
2 | box-sizing: border-box;
3 | margin: 0;
4 | padding: 0;
5 | }
6 | body {
7 | font-family: Arial, Helvetica, sans-serif;
8 | font-size: 15px;
9 | line-height: 1.5em;
10 | }
11 | img {
12 | max-width: 100%;
13 | }
14 | header {
15 | background: #fadadd;
16 | padding: 20px;
17 | }
18 |
19 | header img {
20 | width: 250px;
21 | margin: 0 auto;
22 | display: block;
23 | }
24 |
25 | #main_menu {
26 | margin-top: 20px;
27 | list-style: none;
28 | text-align: center;
29 | }
30 | #main_menu li {
31 | display: inline-block;
32 | margin: 0 5px 10px;
33 | }
34 | #main_menu a {
35 | background: #e8336d;
36 | color: #fff;
37 | font-size: 14px;
38 | padding: 5px 15px;
39 | text-decoration: none;
40 | }
41 | section {
42 | background: #cdeaff;
43 | display: flex;
44 | }
45 | div {
46 | padding: 20px;
47 | width: 60%;
48 | }
49 | div h1 {
50 | margin-bottom: 20px;
51 | }
52 | aside {
53 | padding: 20px;
54 | width: 40%;
55 | }
56 | aside ul {
57 | margin-left: 20px;
58 | margin-top: 10px;
59 | }
60 | footer {
61 | background: #eaffcd;
62 | padding: 20px;
63 | text-align: center;
64 | }
65 | footer p {
66 | font-size: 12px;
67 | }
68 |
--------------------------------------------------------------------------------
/html_tutorial/about.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Document
9 |
10 |
11 |
12 |
13 |
22 |
23 |
24 |
Website Title
25 |
26 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident facere iusto amet, corporis aperiam,
27 | voluptatum esse nisi ducimus veritatis sequi aliquam omnis ipsum! Dolorum quaerat doloremque aperiam quas
28 | ratione! Provident tenetur ratione iure modi! Non quod nesciunt, reprehenderit vel fugiat dolore quisquam quas,
29 | mollitia consequatur illum, veniam modi ad eos aliquid sint facilis ratione voluptatem corporis nulla odit.
30 | error a voluptas accusantium rerum ad mollitia vel explicabo? Ratione necessitatibus dolorem exercitationem sed
31 |
32 |
33 |
34 | Recent Post
35 |
41 |
42 |
43 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/html_tutorial/app.js:
--------------------------------------------------------------------------------
1 | alert("Hi! JavaScript");
2 |
--------------------------------------------------------------------------------
/html_tutorial/file_path/about.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Document
9 |
10 |
11 |
12 | Subscribe
13 | Subscribe
14 | Subscribe
15 |
16 |
17 |
--------------------------------------------------------------------------------
/html_tutorial/file_path/css/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | background: #eaffcd;
3 | }
4 | /* a {
5 | color: #000000;
6 | font-size: 50px;
7 | text-decoration: none;
8 | } */
9 | img {
10 | max-width: 90%;
11 | }
12 | table {
13 | font-family: "Courier New", Courier, monospace;
14 | border-collapse: collapse;
15 | }
16 | td,
17 | th {
18 | border: 1px solid #000000;
19 | }
20 | ul {
21 | /* list-style-type: circle; */
22 | /* list-style-type: square; */
23 | /* list-style-type: disc; */
24 | list-style-type: none;
25 | }
26 | ol {
27 | }
28 | h1,
29 | p,
30 | span,
31 | strong {
32 | border: 1px solid red;
33 | }
34 | #title {
35 | background: red;
36 | color: #fff;
37 | padding: 10px;
38 | }
39 | .title {
40 | font-family: "Courier New", Courier, monospace;
41 | }
42 | .font-size {
43 | font-size: 20px;
44 | }
45 | iframe {
46 | border: 0;
47 | }
48 |
--------------------------------------------------------------------------------
/html_tutorial/file_path/img/google.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/file_path/img/google.jpg
--------------------------------------------------------------------------------
/html_tutorial/file_path/img/google.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/file_path/img/google.png
--------------------------------------------------------------------------------
/html_tutorial/file_path/img/googles.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/file_path/img/googles.gif
--------------------------------------------------------------------------------
/html_tutorial/file_path/img/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/file_path/img/logo.jpg
--------------------------------------------------------------------------------
/html_tutorial/file_path/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/file_path/img/logo.png
--------------------------------------------------------------------------------
/html_tutorial/file_path/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Learning HTML
6 |
7 |
8 |
9 |
14 |
15 |
16 |
17 |
18 |
19 |
25 |
33 |
39 |
60 |
68 |
73 |
75 |
76 |
80 |
102 |
116 | Subscribe
117 |
119 |
120 |
122 |
126 |
130 |
131 |
132 |
133 |
134 |
--------------------------------------------------------------------------------
/html_tutorial/file_path/js/app.js:
--------------------------------------------------------------------------------
1 | alert("Hi! JavaScript");
2 |
--------------------------------------------------------------------------------
/html_tutorial/google.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/google.jpg
--------------------------------------------------------------------------------
/html_tutorial/google.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/google.png
--------------------------------------------------------------------------------
/html_tutorial/googles.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/googles.gif
--------------------------------------------------------------------------------
/html_tutorial/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | Learning HTML
14 |
15 |
16 |
17 |
22 |
23 |
24 |
25 |
26 |
27 |
33 |
41 |
47 |
68 |
76 |
81 |
83 |
84 |
88 |
110 |
124 | Subscribe
125 |
127 |
128 |
130 |
134 |
147 |
148 |
149 |
153 |
154 |
155 |
156 |
--------------------------------------------------------------------------------
/html_tutorial/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/logo.jpg
--------------------------------------------------------------------------------
/html_tutorial/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/logo.png
--------------------------------------------------------------------------------
/html_tutorial/pexels-pixabay-68507.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/pexels-pixabay-68507.jpg
--------------------------------------------------------------------------------
/html_tutorial/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | background: #eaffcd;
3 | }
4 | /* a {
5 | color: #000000;
6 | font-size: 50px;
7 | text-decoration: none;
8 | } */
9 | img {
10 | max-width: 90%;
11 | }
12 | table {
13 | font-family: "Courier New", Courier, monospace;
14 | border-collapse: collapse;
15 | }
16 | td,
17 | th {
18 | border: 1px solid #000000;
19 | }
20 | ul {
21 | /* list-style-type: circle; */
22 | /* list-style-type: square; */
23 | /* list-style-type: disc; */
24 | list-style-type: none;
25 | }
26 | ol {
27 | }
28 | h1,
29 | p,
30 | span,
31 | strong {
32 | border: 1px solid red;
33 | }
34 | #title {
35 | background: red;
36 | color: #fff;
37 | padding: 10px;
38 | }
39 | .title {
40 | font-family: "Courier New", Courier, monospace;
41 | }
42 | .font-size {
43 | font-size: 20px;
44 | }
45 | iframe {
46 | border: 0;
47 | }
48 |
--------------------------------------------------------------------------------
/html_tutorial/viddeo.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/html_tutorial/viddeo.mp4
--------------------------------------------------------------------------------
/layout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shovoalways/html-tutorial/6d0d99b020d6972335202a6316da3835fd8abc28/layout.png
--------------------------------------------------------------------------------