├── README.md ├── .gitignore ├── .gitattributes ├── Tasks ├── laud-page.png ├── Survey-Form.png ├── task-resume.jpeg ├── task-banner-1.jpg ├── task-banner-2.jpeg ├── event-update-page.jpg ├── events-home-page.jpg ├── task-newspaper-1.jpg ├── task-newspaper-2.jpg ├── task-newspaper-3.jpg ├── task-newspaper-4.jpg ├── Grid-or-flexbox design.jpg ├── ifactory-slant-design.pdf ├── Github-profile-page-design.jpg ├── technical-documentation-1.jpg ├── technical-documentation-2.jpg └── html-css-mini-project.md ├── 002-style.css ├── Basic-JS-tasks └── Readme.md ├── DOM ├── 002-dom.html ├── 001-dom.html ├── simple-row-column.html └── 002-dom-script.js ├── 003-positions.css ├── Mini-tasks ├── 003-JS-DOM.md ├── 001-HTML.md └── 002-HTML-CSS.md ├── flex-box-example ├── style.css └── index.html ├── 002.html ├── 005.html ├── 004.html ├── 006.html ├── 003.html ├── 007-bootstrap.html ├── 001.html └── task-sample └── ifactory-slant.html /README.md: -------------------------------------------------------------------------------- 1 | # HTML & CSS & DOM 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ref.css 2 | sample.html 3 | .vscode -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Tasks/laud-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/laud-page.png -------------------------------------------------------------------------------- /Tasks/Survey-Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/Survey-Form.png -------------------------------------------------------------------------------- /Tasks/task-resume.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/task-resume.jpeg -------------------------------------------------------------------------------- /Tasks/task-banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/task-banner-1.jpg -------------------------------------------------------------------------------- /Tasks/task-banner-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/task-banner-2.jpeg -------------------------------------------------------------------------------- /Tasks/event-update-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/event-update-page.jpg -------------------------------------------------------------------------------- /Tasks/events-home-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/events-home-page.jpg -------------------------------------------------------------------------------- /Tasks/task-newspaper-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/task-newspaper-1.jpg -------------------------------------------------------------------------------- /Tasks/task-newspaper-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/task-newspaper-2.jpg -------------------------------------------------------------------------------- /Tasks/task-newspaper-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/task-newspaper-3.jpg -------------------------------------------------------------------------------- /Tasks/task-newspaper-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/task-newspaper-4.jpg -------------------------------------------------------------------------------- /Tasks/Grid-or-flexbox design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/Grid-or-flexbox design.jpg -------------------------------------------------------------------------------- /Tasks/ifactory-slant-design.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/ifactory-slant-design.pdf -------------------------------------------------------------------------------- /Tasks/Github-profile-page-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/Github-profile-page-design.jpg -------------------------------------------------------------------------------- /Tasks/technical-documentation-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/technical-documentation-1.jpg -------------------------------------------------------------------------------- /Tasks/technical-documentation-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvsp/HTML-CSS/HEAD/Tasks/technical-documentation-2.jpg -------------------------------------------------------------------------------- /002-style.css: -------------------------------------------------------------------------------- 1 | .external-style { 2 | padding: 20px; 3 | margin: 20px; 4 | background-color: #607e60; 5 | font-family: monospace; 6 | font-size: 30px; 7 | } 8 | -------------------------------------------------------------------------------- /Basic-JS-tasks/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | Convert the below image to JSON data. 3 | 4 |  5 | -------------------------------------------------------------------------------- /DOM/002-dom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |39 | praesentium et quasi cum blanditiis natus? Saepe officiis pariatur voluptates at ipsam nihil sequi doloribus. 40 |
41 |Some text..
47 |Some text..
52 |Some text..
59 |Some text..
64 |
16 |
17 | 3. You must draw a diagram showing how your HTML pages link together, and the linkage must make sense. For the linkage diagram you can use any online tools to draw or you can make your diagram by hand then scan it or take a digital photo of the diagram and upload it to the `GitHub`.
18 |
19 | Note: A linkage diagram is not the same as a diagram showing. If you have many pages that are all linked to each other, just draw a line that connects them all and label it with words like “all linked to each other” rather than trying to draw dozens of lines with arrows on them.
20 |
21 | 4. Implementation of your project:
22 |
23 | - Your project must have a main page, and it must be named `index.html`.
24 | - You must use at least four `