├── .gitignore
├── .vscode
├── launch.json
└── settings.json
├── CSS-Cheat-sheet
├── 1.css
├── 1.html
├── blog.html
├── cssflexbox.html
├── cssgrid.html
├── flexstylesheet.css
├── fourth.html
├── gridstylesheet.css
├── relatives.html
├── second.html
├── selectors.html
├── simpleflex.css
├── simpleflex.html
├── stylesheet.css
├── stylesheet2.css
├── stylesheet3.css
├── stylesheet4.css
└── third.html
├── HTML-Cheat-Sheet
├── HTMLSheet.html
├── exam.html
└── semantic-tags.txt
├── MyNote.md
├── README.md
├── Students-exam
├── 5
│ ├── Pyhon_exam-code1
│ │ ├── app.py
│ │ ├── helper.py
│ │ └── person.py
│ └── Pyhon_exam-code2
│ │ ├── app.py
│ │ ├── helper.py
│ │ └── person.py
├── Score.numbers
└── Scores.png
├── app.py
├── commerce
├── __init__.py
├── customer
│ ├── __init__.py
│ └── contact.py
└── shopping
│ ├── __init__.py
│ └── sales.py
├── data.csv
├── html-css-exam.png
├── images
├── .DS_Store
├── HTML-PageStructure.jpg
├── IMG_20231127_202957_863.jpg
├── baracoda.png
├── cloud.jpeg
├── ex.png
├── gandalf.jpg
├── mail.ico
├── simple.png
└── zimmer.jpg
├── index.html
├── movies.json
├── p-exam
├── exam.mov
├── participants.csv
└── participants.json
├── sounds
├── .DS_Store
└── Don't-Wanna-MissA-Thing.mp3
├── students
├── CSS
│ ├── 1.css
│ ├── 1.html
│ ├── 10.CSS
│ ├── 10.HTML
│ ├── 2.css
│ ├── 2.html
│ ├── 3.css
│ ├── 3.html
│ ├── 4.css
│ ├── 4.html
│ ├── 5+.css
│ ├── 5+.html
│ ├── 5.css
│ ├── 5.html
│ ├── 7.css
│ ├── 7.html
│ ├── 8.css
│ ├── 8.html
│ ├── 9.css
│ ├── 9.html
│ ├── os.css
│ └── os.html
└── HTML
│ ├── 1.html
│ ├── 2.html
│ ├── 3.html
│ ├── 4.html
│ ├── 5+.html
│ ├── 5.html
│ ├── 6.html
│ ├── 7.html
│ ├── 8.html
│ └── 9.html
└── videos
└── Game-of-Thrones-HBO.mp4
/.gitignore:
--------------------------------------------------------------------------------
1 | # Byte-compiled / optimized / DLL files
2 | __pycache__/
3 | *.py[cod]
4 | *$py.class
5 |
6 | # C extensions
7 | *.so
8 |
9 | # Distribution / packaging
10 | .Python
11 | .DS_Store
12 | MyNoteImages/
13 | build/
14 | develop-eggs/
15 | dist/
16 | downloads/
17 | videos/
18 | eggs/
19 | .eggs/
20 | lib/
21 | lib64/
22 | parts/
23 | sdist/
24 | var/
25 | wheels/
26 | share/python-wheels/
27 | *.egg-info/
28 | .installed.cfg
29 | *.egg
30 | MANIFEST
31 |
32 | # PyInstaller
33 | # Usually these files are written by a python script from a template
34 | # before PyInstaller builds the exe, so as to inject date/other infos into it.
35 | *.manifest
36 | *.spec
37 |
38 | # Installer logs
39 | pip-log.txt
40 | pip-delete-this-directory.txt
41 |
42 | # Unit test / coverage reports
43 | htmlcov/
44 | .tox/
45 | .nox/
46 | .coverage
47 | .coverage.*
48 | .cache
49 | nosetests.xml
50 | coverage.xml
51 | *.cover
52 | *.py,cover
53 | .hypothesis/
54 | .pytest_cache/
55 | cover/
56 |
57 | # Translations
58 | *.mo
59 | *.pot
60 |
61 | # Django stuff:
62 | *.log
63 | local_settings.py
64 | db.sqlite3
65 | db.sqlite3-journal
66 |
67 | # Flask stuff:
68 | instance/
69 | .webassets-cache
70 |
71 | # Scrapy stuff:
72 | .scrapy
73 |
74 | # Sphinx documentation
75 | docs/_build/
76 |
77 | # PyBuilder
78 | .pybuilder/
79 | target/
80 |
81 | # Jupyter Notebook
82 | .ipynb_checkpoints
83 |
84 | # IPython
85 | profile_default/
86 | ipython_config.py
87 |
88 | # pyenv
89 | # For a library or package, you might want to ignore these files since the code is
90 | # intended to run in multiple environments; otherwise, check them in:
91 | # .python-version
92 |
93 | # pipenv
94 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95 | # However, in case of collaboration, if having platform-specific dependencies or dependencies
96 | # having no cross-platform support, pipenv may install dependencies that don't work, or not
97 | # install all needed dependencies.
98 | #Pipfile.lock
99 |
100 | # poetry
101 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
102 | # This is especially recommended for binary packages to ensure reproducibility, and is more
103 | # commonly ignored for libraries.
104 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
105 | #poetry.lock
106 |
107 | # pdm
108 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
109 | #pdm.lock
110 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
111 | # in version control.
112 | # https://pdm.fming.dev/#use-with-ide
113 | .pdm.toml
114 |
115 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
116 | __pypackages__/
117 |
118 | # Celery stuff
119 | celerybeat-schedule
120 | celerybeat.pid
121 |
122 | # SageMath parsed files
123 | *.sage.py
124 |
125 | # Environments
126 | .env
127 | .venv
128 | env/
129 | venv/
130 | ENV/
131 | env.bak/
132 | venv.bak/
133 |
134 | # Spyder project settings
135 | .spyderproject
136 | .spyproject
137 |
138 | # Rope project settings
139 | .ropeproject
140 |
141 | # mkdocs documentation
142 | /site
143 |
144 | # mypy
145 | .mypy_cache/
146 | .dmypy.json
147 | dmypy.json
148 |
149 | # Pyre type checker
150 | .pyre/
151 |
152 | # pytype static type analyzer
153 | .pytype/
154 |
155 | # Cython debug symbols
156 | cython_debug/
157 |
158 | # PyCharm
159 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
160 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
161 | # and can be added to the global gitignore or merged into this file. For a more nuclear
162 | # option (not recommended) you can uncomment the following to ignore the entire idea folder.
163 | #.idea/
164 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | // Use IntelliSense to learn about possible attributes.
3 | // Hover to view descriptions of existing attributes.
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 | "version": "0.2.0",
6 | "configurations": [
7 | {
8 | "name": "Python: Current File",
9 | "type": "python",
10 | "request": "launch",
11 | "program": "${file}",
12 | "console": "integratedTerminal",
13 | "justMyCode": true
14 | }
15 | ]
16 | }
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "[python]": {
3 | "editor.defaultFormatter": "ms-python.autopep8"
4 | },
5 | "python.formatting.provider": "none",
6 | "python.linting.pylintEnabled": true,
7 | "python.linting.enabled": true,
8 | "python.linting.pylintArgs": [
9 | "--disable=missing-module-docstring",
10 | "--disable=missing-class-docstring",
11 | "--disable=missing-function-docstring"
12 | ]
13 | }
14 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/1.css:
--------------------------------------------------------------------------------
1 | body{
2 | background-color: lightgray;
3 | height: 100vh;
4 | font-family: Arial;
5 | color: rgb(102, 101, 101);
6 | }
7 |
8 | .card{
9 | background-color: white;
10 | margin: 5%;
11 | border-radius: 5px;
12 | box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5), -2px -2px 5px rgba(0, 0, 0, 0.5);
13 | padding: 10px 15px 10px 15px;
14 | }
15 |
16 | .stat-item{
17 | display: flex;
18 | align-items: center;
19 | gap: 1em;
20 | }
21 |
22 | .stat-item p{
23 | font-weight: bold;
24 | color: black;
25 | }
26 |
27 | .stat-item i{
28 | color: red;
29 | padding: 10px;
30 | background-color: #ff000020;
31 | border-radius: 5px;
32 | }
33 |
34 | .stats-container{
35 | display: flex;
36 | gap: 1em;
37 | align-items: center;
38 | justify-content: flex-start;
39 | }
40 |
41 | .gray-container{
42 | background-color: lightgray;
43 | border-radius: 5px;
44 | display: flex;
45 | justify-content: space-between;
46 | color: black;
47 | margin-bottom: 1em;
48 | padding: 1em;
49 | }
50 |
51 | .left{
52 | display: flex;
53 | align-items: center;
54 | gap: 5px;
55 | }
56 |
57 | .button{
58 | background-color: rgb(23, 23, 105);
59 | color: white;
60 | font-size: 20px;
61 | border-radius: 5px;
62 | border-color: transparent;
63 | padding-left: 1em;
64 | padding-right: 1em;
65 | }
66 |
67 | .button:hover{
68 | background-color: rgb(66, 66, 233);
69 | }
70 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | A Simple Project of CSS
6 |
7 |
11 |
12 |
13 |
14 |
15 |
16 |
20 |
24 |
25 |
26 |
131 Practices Questions
27 |
28 |
29 |
30 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa ratione,
31 | sit at repudiandae totam optio reprehenderit! Nostrum quis, ad animi
32 | tempore, itaque totam provident odio reprehenderit nam libero doloribus
33 | perferendis! Lorem ipsum dolor sit amet, consectetur adipisicing elit.
34 | Soluta alias animi minima iusto voluptas sapiente facere, doloribus
35 | illum rerum aliquam nostrum velit ad vel, commodi itaque aspernatur
36 | similique sit nulla.
37 |
38 |
39 |
40 |
41 |
42 |
43 |
Resume ->
44 |
45 |
46 |
47 |
48 |
49 |
50 |
Resume ->
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/blog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | My Blog
5 |
6 |
7 |
8 |
9 |
10 |
22 |
23 |
24 |
27 |
28 | Go to Index
29 |
30 |
31 |
32 |
33 | Blog Post One
34 | Posted by Ali
35 |
36 | Lorem ipsum dolor sit amet consectetur adipisicing elit.
37 | Quibusdam asperiores tempora odio magni provident doloremque, sequi quod
38 | mollitia explicabo atque ex. Iure in et placeat quam, facere odit laudantium beatae.
39 |
40 | Read More
41 |
42 |
43 |
44 |
45 | Blog Post Two
46 | Posted by Borna
47 |
48 | Lorem ipsum dolor sit amet consectetur adipisicing elit.
49 | Quibusdam asperiores tempora odio magni provident doloremque, sequi quod
50 | mollitia explicabo atque ex. Iure in et placeat quam, facere odit laudantium beatae.
51 |
52 | Read More
53 |
54 |
55 |
56 |
57 | Blog Post Three
58 | Posted by Sara
59 |
60 | Lorem ipsum dolor sit amet consectetur adipisicing elit.
61 | Quibusdam asperiores tempora odio magni provident doloremque, sequi quod
62 | mollitia explicabo atque ex. Iure in et placeat quam, facere odit laudantium beatae.
63 |
64 | Read More
65 |
66 |
67 |
68 |
69 | Categories
70 |
71 |
76 |
77 |
78 |
79 |
82 |
83 |
84 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/cssflexbox.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CSS Flex Box
5 |
6 |
7 |
8 |
9 |
10 |
Box 1
11 |
Box 2
12 |
Box 3
13 |
Box 4
14 |
15 |
Box 5
16 |
Box 6
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/cssgrid.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CSS Grid
5 |
6 |
7 |
8 |
9 |
10 |
Section 1
11 |
Section 2
12 |
Section 3
13 |
Section 4
14 |
Section 5
15 |
Section 6
16 |
Section 7
17 |
Section 8
18 |
Section 9
19 |
29 |
Section 11
30 |
31 |
Section 12
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/flexstylesheet.css:
--------------------------------------------------------------------------------
1 | .flexcontainer{
2 | display: flex;
3 | flex-direction: row;
4 | /* justify-content:flex-start; */
5 | /* align-items: flex-end; */
6 | /* ====flex-end flex-start space-between center space-evenly ===*/
7 |
8 | /* flex-wrap: nowrap; */
9 | /* use justify-content with it */
10 | }
11 |
12 | .box1{
13 | background-color: darkgreen;
14 | text-align: center;
15 | color: white;
16 | width: 100px;
17 | height: 100px;
18 | margin: 10px;
19 | padding: 5px;
20 | /* flex-grow: 1; */
21 | /* align-self: flex-start; */
22 | /* flex-shrink: 2; */
23 | /* flex-basis: 400px; */
24 | }
25 |
26 | .box2{
27 | background-color: rgb(70, 3, 214);
28 | text-align: center;
29 | color: white;
30 | width: 100px; /* use % for shrink*/
31 | height: 100px;
32 | margin: 10px;
33 | padding: 5px;
34 | /* flex-grow: 1; */
35 | }
36 |
37 | .box3{
38 | background-color: rgb(226, 1, 114);
39 | text-align: center;
40 | color: white;
41 | width: 100px;
42 | height: 100px;
43 | margin: 10px;
44 | padding: 5px;
45 | /* order: -1000; */
46 | /* flex-grow: 1; */
47 | }
48 |
49 | .box4{
50 | background-color: rgb(253, 174, 2);
51 | text-align: center;
52 | color: white;
53 | width: 100px;
54 | height: 100px;
55 | margin: 10px;
56 | padding: 5px;
57 | /* order: -1; */
58 | /* flex-grow: 2; */
59 | }
60 |
61 | .box5{
62 | background-color: rgb(59, 229, 255);
63 | text-align: center;
64 | color: white;
65 | width: 100px;
66 | height: 100px;
67 | margin: 10px;
68 | padding: 5px;
69 | }
70 |
71 | .box6{
72 | background-color: rgb(144, 253, 2);
73 | text-align: center;
74 | color: white;
75 | width: 100px;
76 | height: 100px;
77 | margin: 10px;
78 | padding: 5px;
79 | }
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/fourth.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Fourth Page
5 |
6 |
7 |
8 | Fill out all information and hit submit button
9 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
Left Content Area
40 |
41 | Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ipsam veritatis molestiae harum amet nostrum, cumque saepe ipsa reprehenderit similique, voluptas et animi dicta ut pariatur dignissimos a, deleniti accusantium fugit!
42 |
43 |
44 |
45 |
46 |
Center Content Area
47 |
48 | Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ipsam veritatis molestiae harum amet nostrum, cumque saepe ipsa reprehenderit similique, voluptas et animi dicta ut pariatur dignissimos a, deleniti accusantium fugit!
49 |
50 |
51 |
52 |
53 |
Right Content Area
54 |
55 | Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ipsam veritatis molestiae harum amet nostrum, cumque saepe ipsa reprehenderit similique, voluptas et animi dicta ut pariatur dignissimos a, deleniti accusantium fugit!
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 | This is some text as paragraph
95 |
96 | This is some text as paragraph
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/gridstylesheet.css:
--------------------------------------------------------------------------------
1 | .container-grid{
2 | display: grid;
3 | /* grid-template-columns: auto auto auto; */
4 | /* grid-template-rows: 100px 100px 100px 100px 100px; */
5 | /* grid-gap:10px; */
6 | /* grid-auto-rows: 100px; */
7 | /* grid-template-columns: repeat(5, 1fr); */
8 | }
9 |
10 | .nestedgrid{
11 | /* display: grid; */
12 | /* grid-template-columns: repeat(3, 1fr); */
13 | /* grid-gap:10px; */
14 | /* grid-auto-rows: 150px; */
15 | /* padding: 10px; */
16 | }
17 |
18 | p{
19 | /* border: 2px solid white; */
20 | }
21 |
22 | img{
23 | /* border: 2px solid white; */
24 | /* width: 100%; */
25 | /* height: 100%; */
26 | }
27 |
28 | .section1{
29 | /* grid-column: 1; */
30 | /* grid-row: 1; */
31 | /* background-color: blue; */
32 | /* color: white; */
33 | /* text-align: center; */
34 | /* font-size: 20px; */
35 | }
36 | .section2{
37 | /* grid-column: 2;
38 | grid-row: 1;
39 | background-color:darkgreen;
40 | color: white;
41 | text-align: center;
42 | font-size: 20px; */
43 | }
44 | .section3{
45 | /* grid-column: 3;
46 | grid-row: 1;
47 | background-color: brown;
48 | color: white;
49 | text-align: center;
50 | font-size: 20px; */
51 | }
52 | .section4{
53 | /* grid-column: 1;
54 | grid-row: 2;
55 | background-color: red;
56 | color: white;
57 | text-align: center;
58 | font-size: 20px; */
59 | }
60 | .section5{
61 | /* grid-column: 2;
62 | grid-row: 2;
63 | background-color: gray;
64 | color: white;
65 | text-align: center;
66 | font-size: 20px; */
67 | }
68 | .section6{
69 | /* grid-column: 3;
70 | grid-row: 2;
71 | background-color: yellow;
72 | color: white;
73 | text-align: center;
74 | font-size: 20px; */
75 | }
76 | .section7{
77 | /* grid-column: 1;
78 | grid-row: 3;
79 | background-color: black;
80 | color: white;
81 | text-align: center;
82 | font-size: 20px; */
83 | }
84 | .section8{
85 | /* grid-column: 2;
86 | grid-row: 3;
87 | background-color: darkblue;
88 | color: white;
89 | text-align: center;
90 | font-size: 20px; */
91 | }
92 | .section9{
93 | /* grid-column: 3;
94 | grid-row: 3;
95 | background-color: violet;
96 | color: white;
97 | text-align: center;
98 | font-size: 20px; */
99 | }
100 | .section10{
101 | /* grid-column: 1 / 4; */
102 | /* grid-row: 4 / 6; */
103 | /* background-color: orangered; */
104 | /* color: white; */
105 | /* text-align: center; */
106 | /* font-size: 20px; */
107 | }
108 | .section11{
109 | /* grid-column: 1 / 4;
110 | grid-row: 6 / 8;
111 | background-color: rgb(238, 255, 0);
112 | color: white;
113 | text-align: center;
114 | font-size: 20px; */
115 | }
116 |
117 | .section12{
118 | /* grid-column: 4 / 6;
119 | grid-row: 1 / 8;
120 | background-color: rgb(255, 1, 73);
121 | color: white;
122 | text-align: center;
123 | font-size: 20px; */
124 | }
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/relatives.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Relative
5 |
6 |
7 |
8 |
9 |
A paragraph
10 |
A paragraph
11 |
A paragraph
12 |
A paragraph
13 |
14 |
15 |
16 |
A paragraph
17 |
A paragraph
18 |
A paragraph
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/second.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Second Page
5 |
6 |
7 |
8 | Second Page Test.
9 |
10 |
11 |
17 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsam earum,
18 | asperiores facere accusantium debitis nemo recusandae inventore optio,
19 | eveniet dolore quas expedita quibusdam eaque quod. Quisquam facere eius
20 | repellat quis? Lorem ipsum dolor sit amet consectetur, adipisicing elit.
21 | Dignissimos in inventore incidunt nam minus voluptatum commodi cumque
22 | fuga nisi, aperiam asperiores quo? Quo unde veniam eos voluptatum
23 | expedita quidem debitis! Lorem ipsum dolor sit, amet consectetur
24 | adipisicing elit. Aspernatur nesciunt in culpa aperiam, ducimus sequi.
25 | Corrupti, aliquid. Veniam aliquid recusandae maiores nostrum nemo harum,
26 | libero commodi, a ipsam voluptates odit. Lorem ipsum dolor sit amet
27 | consectetur adipisicing elit. Earum inventore rerum accusamus facere
28 | eius quae blanditiis magnam distinctio, nobis commodi nemo magni.
29 | Eligendi maxime facere perferendis ullam, voluptatem ratione et?
30 |
31 |
32 |
33 |
34 |
35 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsam earum,
36 | asperiores facere accusantium debitis nemo recusandae inventore optio,
37 | eveniet dolore quas expedita quibusdam eaque quod. Quisquam facere eius
38 | repellat quis? Lorem ipsum dolor sit amet consectetur, adipisicing elit.
39 | Dignissimos in inventore incidunt nam minus voluptatum commodi cumque fuga
40 | nisi, aperiam asperiores quo? Quo unde veniam eos voluptatum expedita
41 | quidem debitis!
42 |
43 |
44 |
45 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorem hic odit
46 | saepe eligendi sapiente est earum soluta incidunt dicta qui obcaecati
47 | fugit deserunt, eaque atque iusto dolores magnam sequi quis?
48 |
49 |
50 |
51 |
52 |
53 |
54 | Lorem ipsum dolor sit amet
55 | Lorem ipsum dolor sit amet
56 | Lorem ipsum dolor sit amet
57 |
58 |
59 |
60 |
61 | this a div for test
62 | second div for test
63 |
64 | h1 test for floating
65 |
66 |
67 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/selectors.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Selectors
5 |
6 |
7 |
8 |
9 | This is a h1 Tag
10 | This is a h2 Tag
11 | This is a h3 Tag
12 |
13 |
14 |
15 | This is Paragraph 1
16 | This is Paragraph 2
17 | This is Paragraph 3
18 |
19 |
20 |
This is Paragraph in Div
21 |
22 |
23 |
24 | This is a Paragraph to explain child selector
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
This a heading 2
33 |
Paragraph for sibling test 1
34 |
Paragraph for sibling test 2
35 |
36 |
37 |
38 |
39 |
40 |
41 |
some text
42 |
some more text
43 |
even some more text
44 |
45 |
46 |
47 |
48 |
49 |
Paragraph 1
50 |
Paragraph 2
51 |
Paragraph 3
52 |
Paragraph 4
53 |
Paragraph 5
54 |
Paragraph 6
55 |
Paragraph 7
56 |
Paragraph 8
57 |
Paragraph 9
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/simpleflex.css:
--------------------------------------------------------------------------------
1 | body{
2 | background-color: black;
3 | }
4 | .flexcontainer{
5 | display: flex;
6 | flex-direction: row;
7 | flex-wrap: wrap;
8 | }
9 |
10 | .lbox{
11 | text-align: center;
12 | color: white;
13 | margin: 10px;
14 | padding: 5px;
15 | height: 100px;
16 | width: 100px;
17 | flex-grow: 1;
18 | border-radius: 5px;
19 | border: 2px white solid;
20 | }
21 |
22 | .sbox{
23 | text-align: center;
24 | color: white;
25 | margin: 10px;
26 | padding: 5px;
27 | height: 100px;
28 | width: 100px;
29 | border-radius: 5px;
30 | border: 2px white solid;
31 | }
32 |
33 |
34 | .linebreak{
35 | background-color: darkgray;
36 | height: 2px;
37 | flex-basis: 100%;
38 | }
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/simpleflex.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | FlexBox Test
5 |
6 |
7 |
8 |
9 |
Box1
10 |
Box2
11 |
12 |
Box3
13 |
Box4
14 |
Box5
15 |
16 |
Box6
17 |
Box7
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/stylesheet.css:
--------------------------------------------------------------------------------
1 | body{
2 | font-family: Verdana, Geneva, Tahoma, sans-serif;
3 | background-color: #f9f6cf;
4 | font-size: 20px;
5 | }
6 | h1, h2{
7 | background-color: aqua;
8 | text-align: center;
9 | color: red;
10 | border-bottom: 1px solid black;
11 | font-family:'Times New Roman', Times, serif;
12 | }
13 | h1{
14 | color: purple;
15 | }
16 | .h1-absolute{
17 | background-color: blue;
18 | border: solid 3px dashed;
19 | position: fixed;
20 |
21 | top: 90px;
22 | left: 825px;
23 | }
24 | .h1-fixed{
25 | background-color: blue;
26 | border: solid 3px dashed;
27 | position: absolute;
28 |
29 | top: 90px;
30 | left: 825px;
31 | }
32 |
33 | .blue{
34 | color:blue;
35 | font-family: Verdana, Geneva, Tahoma, sans-serif;
36 | }
37 | p.green{
38 | color:green;
39 | font-family: Verdana, Geneva, Tahoma, sans-serif;
40 | }
41 | .underline{
42 | text-decoration: underline;
43 | }
44 | .fonts{
45 | font-size: 0.8em;
46 | line-height:2em;
47 | }
48 | .box-model1{
49 | background-color: antiquewhite;
50 | color: rgb(74, 141, 249);
51 | font-size: 50%;
52 | line-height: 2em;
53 | border: 5px solid black;
54 | padding: 20px;
55 | background-image: url(images/cloud.jpeg);
56 | border-top-left-radius: 20px;
57 | border-bottom-right-radius: 20px;
58 | border-bottom-style: dotted;
59 | border-bottom-color: red;
60 | }
61 | .box-model2{
62 | background-color: antiquewhite;
63 | color: rgb(74, 141, 249);
64 | font-size: 50%;
65 | line-height: 2em;
66 | border: 5px solid black;
67 | padding: 200px 100px 50px 10px;
68 | margin: 5%;
69 | }
70 |
71 | .imagec{
72 | height: 300px;
73 | width: 300px;
74 | display: block;
75 | margin-left: auto;
76 | margin-right: auto;
77 | padding: 3px;
78 | background-color: silver;
79 | border-color: black;
80 | border-style: solid;
81 | border-width: 2px;
82 | }
83 |
84 | .main{
85 | color: blue;
86 | font-size: 15px;
87 | text-align: center;
88 | }
89 | .sub{
90 | color: rgb(240, 66, 130);
91 | font-size: 10px;
92 | text-align: left;
93 | }
94 |
95 | .highlight{
96 | background-color: yellow;
97 | }
98 |
99 | /* ============================== */
100 | a:link{
101 | color: blue;
102 | }
103 | a:visited{
104 | color: #8c8c9d;
105 | }
106 | a:hover{
107 | cursor:crosshair;
108 | color: #f15a51;
109 | }
110 |
111 | .second-h1{
112 | background-color: #f15a51;
113 | border: black 3px solid;
114 | padding: 20px;
115 | margin: 25px;
116 | }
117 |
118 | .second-p1{
119 | background-color: #f15a51;
120 | border: black 3px solid;
121 | padding: 20px;
122 | margin: 25px;
123 | text-align: justify;
124 | }
125 |
126 | .second-p2{
127 | background-color: #adf868;
128 | border: black 3px solid;
129 | padding: 20px;
130 | margin: 25px;
131 | height: 100px;
132 | overflow: scroll;
133 | cursor:url(images/mail.ico), default;
134 | }
135 | .second-span{
136 | background-color: chartreuse;
137 | border: black 3px solid;
138 | padding: 20px;
139 | margin: 25px;
140 | }
141 |
142 | .second-image{
143 | background-color: #adf868;
144 | border: black 3px solid;
145 | padding: 5px;
146 | margin: 20px;
147 | /* margin-bottom: 300px; */
148 | }
149 |
150 | .second-div{
151 | background-color:aqua;
152 | border: black 3px solid;
153 | padding: 20px;
154 | margin: 25px;
155 | }
156 |
157 | .second-div1{
158 | background-color:violet;
159 | border: black 3px solid;
160 | width: 300px;
161 | float: left;
162 | padding: 20px;
163 | margin: 25px;
164 | }
165 | .second-div2{
166 | background-color:violet;
167 | border: black 3px solid;
168 | width: 300px;
169 | float: right;
170 | padding: 20px;
171 | margin: 25px;
172 | }
173 |
174 |
175 |
176 | /*Relatives==========================*/
177 |
178 | #main1{
179 | border: 1px dotted black;
180 | background-color: #e5e4d7;
181 | border-radius: 5px;
182 | padding: 10px;
183 | margin: 10px;
184 | }
185 |
186 | #par{
187 | color: red;
188 | position: relative;
189 | top: 5px;
190 | left: 5px;
191 | }
192 |
193 | #main2{
194 | border: 1px dotted black;
195 | background-color: #e5e4d7;
196 | border-radius: 5px;
197 | padding: 10px;
198 | margin: 10px;
199 | position: relative;
200 | }
201 |
202 | #square{
203 | height:25px;
204 | width: 25px;
205 | background-color: red;
206 | position: absolute;
207 | top: 5px;
208 | left: 5px;
209 | }
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/stylesheet2.css:
--------------------------------------------------------------------------------
1 | body{
2 | font-family: Verdana, Geneva, Tahoma, sans-serif;
3 | background-color: #f9f6cf;
4 | font-size: 20px;
5 | margin: 0;
6 | }
7 | h1, h2{
8 | background-color: aqua;
9 | text-align: center;
10 | color: red;
11 | border: 1px solid black;
12 | font-family:'Times New Roman', Times, serif;
13 | margin: 10px;
14 | }
15 | h1{
16 | color: purple;
17 | }
18 |
19 | /*Third page styles*/
20 |
21 | /*float property*/
22 | .floating-div1{
23 | background-color: aqua;
24 | border: black solid 2px;
25 | width: 300px;
26 | float: left;
27 | }
28 |
29 | .floating-div2{
30 | background-color: rgb(218, 179, 235);
31 | border: black solid 2px;
32 | width: 50%;
33 | float: right;
34 | }
35 |
36 | /*position property*/
37 | .absolute-div{
38 | background-color: brown;
39 | color: azure;
40 | position: absolute;
41 |
42 | top: 350px;
43 | left:250px
44 | }
45 |
46 | /*position property*/
47 | .overflow-div{
48 | background-color: rgb(4, 239, 247);
49 | color: rgb(158, 7, 164);
50 | top: 350px;
51 | left:250px;
52 | height: 120px;
53 | overflow: scroll;
54 | cursor: url(images/mail.ico), default;
55 | }
56 |
57 | /* Cursor property*/
58 | .cursor-button{
59 | cursor:crosshair
60 | }
61 |
62 | a:hover{
63 | cursor: pointer;
64 | }
65 |
66 | /* Text and Image*/
67 |
68 | .imageintext-div{
69 | background-color: darkkhaki;
70 | border: black dotted 3px;
71 | border-radius: 5px;
72 | padding: 20px;
73 | margin: 10px;
74 | }
75 |
76 | .zimmer-image{
77 | font: optional;
78 | /* border-radius: 10px;
79 | float: left;
80 | margin-right: 20px;
81 | margin-bottom: 300px; */
82 | }
83 |
84 | /* Relative Positioning */
85 | .relative-div1{
86 | background-color: gray;
87 | border-radius: 5px;
88 | margin: 10px;
89 | padding: 10px;
90 | }
91 | .relative-div2{
92 | background-color: gray;
93 | border-radius: 5px;
94 | margin: 10px;
95 | padding: 10px;
96 | /* position: relative; */
97 | }
98 |
99 | #par{
100 | color: red;
101 | /* position: relative;
102 | top: 5px;
103 | left: 15px; */
104 | }
105 |
106 | #square{
107 | background: red;
108 | height: 25px;
109 | width: 25px;
110 | position: static;
111 |
112 | /* position: relative;
113 | top: 5px;
114 | left: 15px; */
115 |
116 | /* position: absolute;
117 | bottom: 5px;
118 | left: 15px; */
119 | }
120 |
121 | .simple{
122 | position: absolute;
123 | }
124 |
125 | /* Navigation bar*/
126 |
127 | ul{
128 | list-style: none;
129 | padding: 0;
130 | margin: 0;
131 | }
132 |
133 | ul li a{
134 | font-family: Georgia, 'Times New Roman', Times, serif;
135 | text-decoration: none;
136 | background-color: darkolivegreen;
137 | color: white;
138 | display: block;
139 | width: 100px;
140 | margin: 5px;
141 | padding: 10px;
142 | border: 1px solid red;
143 | border-radius: 2px;
144 | text-align: center;
145 | height: 25px;
146 | line-height: 25px;
147 | }
148 | ul li a:hover{
149 | background-color: rgb(211, 253, 169);
150 | color: black;
151 | }
152 |
153 | /* Horizontal nav bar*/
154 |
155 | /* #nav{
156 | background-color: darkolivegreen;
157 | height: 35px;
158 | font-size: 25px;
159 | font-weight: bold;
160 | font: Tahoma;
161 | }
162 |
163 | #nav ul{
164 | padding: 0;
165 | margin: 0;
166 | list-style-type: none;
167 | text-align: center;
168 | }
169 | #nav li{
170 | padding: 15px;
171 | display: inline;
172 | vertical-align: middle;
173 | }
174 |
175 | #nav a{
176 | text-decoration: none;
177 | padding: 8px 8px 8px 8px;
178 | color: aliceblue;
179 | vertical-align: middle;
180 | }
181 |
182 | #nav a:hover{
183 | background-color: white;
184 | color: green;
185 | } */
186 |
187 | /* Beautiful button */
188 |
189 | /* .button{
190 | background: #e7e7e7;
191 | border: 1px solid;
192 | border-radius: 3px;
193 | font: 700 13px;
194 | font-family: Arial, Helvetica, sans-serif;
195 | height: 30px;
196 | line-height: 28px;
197 | padding: 0 20px;
198 | text-align:center;
199 | margin-right: 10px;
200 | box-sizing: border-box;
201 | }
202 |
203 | ul{
204 | padding: 0;
205 | list-style-type: none;
206 | }
207 |
208 | li{
209 | display: inline;
210 | }
211 |
212 | a{
213 | color: #666;
214 | text-decoration: none;
215 | float: left;
216 | }
217 |
218 | a:hover{
219 | background-color: #dadada;
220 | color: #000;
221 |
222 | } */
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/stylesheet3.css:
--------------------------------------------------------------------------------
1 | body{
2 | font-family: Verdana, Geneva, Tahoma, sans-serif;
3 | background-color: #f9f6cf;
4 | font-size: 20px;
5 | margin: 0;
6 | }
7 |
8 | #theForm{
9 | color: white;
10 | display: table;
11 | padding: 15px;
12 | background-color: #2c8f77;
13 | border: solid black 2px;
14 | }
15 |
16 | .row{
17 | display: table-row;
18 | }
19 |
20 | .row label{
21 | display: table-cell;
22 | padding: 2px;
23 | /* text-align: right; */
24 | }
25 |
26 | .row input{
27 | display: table-cell;
28 | padding: 2px;
29 | }
30 |
31 | /* Strategies */
32 |
33 | #left{
34 | margin: 15px;
35 | padding: 10px;
36 | border: solid green 2px;
37 | border-radius: 5px;
38 | background-color: aquamarine;
39 | }
40 |
41 | #center{
42 | margin: 15px;
43 | padding: 10px;
44 | border: solid green 2px;
45 | border-radius: 5px;
46 | background-color: bisque;
47 | }
48 |
49 | #right{
50 | margin: 15px;
51 | padding: 10px;
52 | border: solid green 2px;
53 | border-radius: 5px;
54 | background-color: cadetblue;
55 | }
56 |
57 | #left, #center, #right{
58 | width: 100px;
59 | }
60 |
61 | #left, #center, #right{
62 | width: 300px;
63 | }
64 |
65 |
66 | /* Opacity property*/
67 |
68 | #box1{
69 | height: 300px;
70 | width: 300px;
71 | padding: 15px;
72 | margin: 10px;
73 | background-color: blue;
74 | }
75 |
76 | #box2{
77 | height: 300px;
78 | width: 300px;
79 | padding: 15px;
80 | margin: 10px;
81 | background-color: blue;
82 | /* opacity: 0.4; */
83 | }
84 |
85 | #box2:hover{
86 | /* opacity: 1.0; */
87 | }
88 |
89 | /* linear Gradient */
90 | #box3{
91 | width: 800px;
92 | height: 300px;
93 | float: left;
94 | background: blue;
95 |
96 | /* 30deg */
97 | /* background: linear-gradient( to top right, blue 50%, yellow 50%); */
98 |
99 | /* background: linear-gradient(to right, rgba(255,0,0,0.3), rgba(0,0,255,1.0)); */
100 | }
101 |
102 | /* Text shadow */
103 | #text1{
104 | text-align: center;
105 | font: bold 60px helvetica;
106 | /* text-shadow: 3px 3px 5px orange,
107 | 6px 6px 10px blue; */
108 | }
109 |
110 | #text2{
111 | text-align: center;
112 | font: bold 60px helvetica;
113 | /* text-shadow: 6px 6px 10px rgba(0, 0, 255, 0.7); */
114 | }
115 |
116 | /* Box shadow */
117 | #box4{
118 | width: 800px;
119 | height: 300px;
120 | float: left;
121 | background: yellowgreen;
122 | /* box-shadow: 15px 15px 5px 30px blue; */
123 | /* box-shadow: inset 0 0 15px black; */
124 | }
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/stylesheet4.css:
--------------------------------------------------------------------------------
1 | /* Type selector */
2 | h1{
3 | /* color: blue; */
4 | }
5 |
6 | /* Id selector */
7 | #para1{
8 | /* color: green; */
9 | }
10 |
11 | /* Class selector */
12 | .para{
13 | /* color: orange; */
14 | }
15 |
16 | /* Combined selector */
17 |
18 | h2, h3, #para1{
19 | /* text-decoration: underline; */
20 | }
21 |
22 | /* The descendant selector */
23 | div p{
24 | /* font-style: italic; */
25 | }
26 |
27 | /* The child selector */
28 | blockquote.test>p{
29 | /* color: crimson; */
30 | }
31 |
32 | /* Sibling selector */
33 | div h2+p{
34 | /* color: blueviolet; */
35 | }
36 |
37 | div h2~p{
38 | /* color:chartreuse; */
39 | }
40 |
41 |
42 | /* Wildcard selector */
43 | * {
44 | /* text-decoration: underline; */
45 | }
46 |
47 | /* Attribute selector */
48 |
49 | /* ^ $ * */
50 |
51 | p[lang^="fr"]{
52 | /* background-color: cornflowerblue; */
53 | }
54 |
55 | /* nth Selectors */
56 | #nth{
57 | /* border: blue dashed 2px; */
58 | /* background-color: aquamarine; */
59 | /* margin: 20px; */
60 | /* padding: 30px; */
61 | }
62 |
63 | /* even odd 3 3n 2n+4 */
64 | #nth p:nth-child(even){
65 | /* background-color: orangered; */
66 | }
67 |
68 | /* Not selector (work on selectors) */
69 | :not(#para1){
70 | /* color: aqua; */
71 |
72 | }
73 |
74 | /* First character selector */
75 | p::first-letter{
76 | /* font-size: 30px; */
77 | /* font-weight: bold; */
78 | }
79 |
80 | /* First line selector */
81 | p:first-line{
82 | /* color: red; */
83 | /* font-family: 'Courier New', Courier, monospace; */
84 | }
85 |
--------------------------------------------------------------------------------
/CSS-Cheat-sheet/third.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Third
5 |
6 |
7 |
8 |
14 |
15 |
23 |
24 |
33 |
34 | Third Page
35 |
36 |
37 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Omnis
38 | accusantium facere voluptates, aliquid maxime nihil enim debitis facilis
39 | nobis nesciunt labore consectetur dolores iste molestias nulla harum
40 | atque! Quod, nemo.
41 |
42 |
43 |
44 |
45 |
46 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloribus iste
47 | harum eveniet magnam quos architecto, illo eius magni, tenetur dolores
48 | impedit fuga nulla molestias ab cumque animi laborum repudiandae maxime!
49 |
50 |
51 | This is heading for test
52 |
53 |
54 |
55 |
56 |
57 | Test for absolute position.
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. Recusandae sed
74 | quis animi, dignissimos enim explicabo quasi. Sequi, neque commodi,
75 | rerum optio quidem assumenda natus molestias inventore saepe nam
76 | pariatur ipsam. Lorem ipsum dolor sit amet consectetur adipisicing elit.
77 | Error, asperiores doloremque vero quaerat iure assumenda dolorum
78 | molestiae excepturi repellendus aspernatur adipisci, illo blanditiis
79 | ratione, dolore voluptas numquam quod. Voluptatem, consequatur? Lorem
80 | ipsum dolor sit amet consectetur adipisicing elit. Adipisci dolore
81 | laborum quod sit voluptas optio illo, tempora incidunt non culpa
82 | quibusdam expedita possimus dignissimos itaque autem iure odio iste
83 | nobis. Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab,
84 | impedit consequatur sunt beatae officia neque corrupti ipsum similique
85 | reiciendis dicta numquam. Eos excepturi et iusto odio quia, dicta
86 | itaque! Voluptatum.
87 |
88 |
89 |
90 |
91 |
92 | okokokk
93 |
94 | Home
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
109 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsam earum,
110 | asperiores facere accusantium debitis nemo recusandae inventore optio,
111 | eveniet dolore quas expedita quibusdam eaque quod. Quisquam facere eius
112 | repellat quis? Lorem ipsum dolor sit amet consectetur, adipisicing elit.
113 | Dignissimos in inventore incidunt nam minus voluptatum commodi cumque
114 | fuga nisi, aperiam asperiores quo? Quo unde veniam eos voluptatum
115 | expedita quidem debitis! Lorem ipsum dolor sit, amet consectetur
116 | adipisicing elit. Aspernatur nesciunt in culpa aperiam, ducimus sequi.
117 | Corrupti, aliquid. Veniam aliquid recusandae maiores nostrum nemo harum,
118 | libero commodi, a ipsam voluptates odit. Lorem ipsum dolor sit amet
119 | consectetur adipisicing elit. Earum inventore rerum accusamus facere
120 | eius quae blanditiis magnam distinctio, nobis commodi nemo magni.
121 | Eligendi maxime facere perferendis ullam, voluptatem ratione et?
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
A paragraph
131 |
A paragraph
132 |
A paragraph
133 |
A paragraph
134 |
135 |
136 |
137 |
A paragraph
138 |
A paragraph
139 |
A paragraph
140 |
141 |
142 |
143 |
144 |
145 |
146 |
--------------------------------------------------------------------------------
/HTML-Cheat-Sheet/HTMLSheet.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | HTML5 Cheat Sheet
5 |
6 |
7 |
8 | Go to Blog
9 |
10 |
11 | Heading one
12 | Heading two
13 | Heading three
14 | Heading four
15 | Heading five
16 | Heading six
17 |
18 |
19 | Lorem ipsum dolor sit amet, consectetur adipisicing elit,
20 | sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
21 | ad minim veniam, quis nostrud exercitation
22 | ullamco laboris nisi ut aliquip ex ea commodo consequat.
23 | Duis aute irure dolor in reprehenderit in voluptate velit esse
24 | cillum dolore eu fugiat nulla
25 | pariatur . Excepteur sint
26 | occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
27 | anim id est laborum.
28 |
29 |
30 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempore, quaerat
31 | ex dolore rem dicta ducimus provident laborum, tempora minima obcaecati
32 | laudantium iste natus? Distinctio, dicta. Voluptatem officiis recusandae
33 | in cupiditate!
34 |
35 |
36 |
37 |
38 | List Item 1
39 | List Item 2
40 | List Item 3
41 | List Item 4
42 | List Item 5
43 |
44 |
45 | List Item 1
46 | List Item 2
47 | List Item 3
48 | List Item 4
49 | List Item 5
50 |
51 |
52 |
53 |
54 |
55 |
56 | Name
57 | Email
58 | Age
59 |
60 |
61 |
62 |
63 | Ali
64 | ali@gmail.com
65 | 38
66 |
67 |
68 | Sara
69 | Sara@gmail.com
70 | 30
71 |
72 |
73 | Jack
74 | Jack@gmail.com
75 | 34
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 | Personal information's
88 |
89 |
170 |
171 |
172 |
173 |
174 | Click Me
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
204 |
205 | Check Google.com
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 | Audio
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
227 | Video
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 | Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quidem beatae
239 | culpa nulla ut quasi alias suscipit esse repudiandae expedita illum quo ea
240 | assumenda porro doloribus odit, asperiores, maxime sapiente cum!
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 | This is the USA Military
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 | This is HTML Full Course by Ali Darvishi
259 |
260 |
261 |
262 | ™ & ⁢ > ? ©
263 | ok
264 | ok
265 |
266 |
267 |
268 |
269 |
--------------------------------------------------------------------------------
/HTML-Cheat-Sheet/exam.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exam
5 |
6 |
7 | My Website
8 |
9 | About
10 |
11 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolorem
12 | laborum, aut alias nisi dolor, cupiditate atque odio corrupti libero
13 | culpa commodi, assumenda quibusdam? Sed vel dolorem nemo ut magni hic.
14 |
15 |
16 |
17 | Websites
18 |
22 |
23 |
24 | Personal Information
25 |
26 | Full Name
27 |
33 | Email
34 |
40 |
41 | Your Message
42 |
43 |
44 | Select your Gender:
45 |
46 | Male
47 | female
49 | Are you Agree?
50 | Yes
51 |
52 | No
53 |
54 |
55 | select you birthday:
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/HTML-Cheat-Sheet/semantic-tags.txt:
--------------------------------------------------------------------------------
1 | : Every HTML document must begin with a DOCTYPE declaration.
2 |
3 | : HTML (Hyper Text Markup Language) is a language used to define the structure of online pages. Like building blocks with semantic meaning. It represents the root of an HTML page, it is also known as the root element. All other components must be descended from this one.
4 |
5 | : It contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets.
6 |
7 | : Specifies the base URL to use for all relative URLs in a document. There can be only one base element.
8 |
9 | : This element is most commonly used to link to CSS, favicons, or icons. Specifies relationships between the current document and an external resource.
10 |
11 | : This HTML element represents metadata that cannot be represented by other HTML meta-related elements, like , , …
12 |
13 |