├── README.md
├── lab
├── Lab 00 - Setup environment.doc
├── Lab 06-1 - Styling with CSS.doc
├── Lab 06-2 - Layout with CSS.doc
├── Lab 07 - XML & XHTML.doc
├── Lab 1 - Basic HTML.doc
├── Lab 2-1 - PHP Variables & HTML Input Form.doc
├── Lab 2-2 - Conditional Statements.doc
├── Lab 3 - Javascript.doc
├── Lab 4 - MVC Architecture & PHP Framework.doc
└── Lab 5 - MySQL & PHP.doc
├── lab0
├── README.md
└── pic
│ └── ide.png
├── lab1
├── ex1-BuiVietHoang.html
├── ex2-20183594.html
├── ex2-BuiVietHoang.html
├── example.html
├── exe1.html
├── exe2-20183554.html
├── htmlstypeexamples.html
├── icon
│ ├── facebook.png
│ ├── github.png
│ ├── global.png
│ ├── linkedin.png
│ ├── reddit.png
│ └── twitter.png
└── pic
│ ├── _MG_7393.jpg
│ ├── avatar.jpg
│ └── hust.png
├── lab2.1
├── Exercise.html
├── Exercise.php
├── basicform-control.php
├── basicform.php
├── expression.php
├── form4radio.html
└── form4radion.php
├── lab2.2
├── ConditionalTest
│ ├── .project
│ ├── ConditionalTest.html
│ └── ConditionalTest.php
├── DateTime.php
└── SquareCube.php
├── lab3
├── DOM
│ ├── cookie.js
│ ├── index.html
│ ├── left.html
│ └── right.html
├── Validate inputs.html
├── colors.html
├── ex1.html
├── ex2.html
├── ex3.html
├── ex4.html
├── ex5.html
└── ex6.html
├── lab4
├── README.md
├── e-commerce
│ ├── .DS_Store
│ ├── .htaccess
│ ├── application
│ │ ├── controllers
│ │ │ ├── .DS_Store
│ │ │ ├── categoriescontroller.php
│ │ │ └── productscontroller.php
│ │ ├── models
│ │ │ ├── .DS_Store
│ │ │ ├── admin.php
│ │ │ ├── category.php
│ │ │ └── product.php
│ │ └── views
│ │ │ ├── .DS_Store
│ │ │ ├── categories
│ │ │ ├── .DS_Store
│ │ │ ├── index.php
│ │ │ └── view.php
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ └── products
│ │ │ └── view.php
│ ├── config
│ │ ├── config.php
│ │ ├── inflection.php
│ │ └── routing.php
│ ├── db
│ │ ├── .DS_Store
│ │ └── framework-20090330111635.sql
│ ├── index.php
│ ├── library
│ │ ├── .htaccess
│ │ ├── bootstrap.php
│ │ ├── cache.class.php
│ │ ├── html.class.php
│ │ ├── inflection.class.php
│ │ ├── shared.php
│ │ ├── sqlquery.class.php
│ │ ├── template.class.php
│ │ ├── vanillacontroller.class.php
│ │ └── vanillamodel.class.php
│ ├── public
│ │ ├── .DS_Store
│ │ ├── .htaccess
│ │ ├── css
│ │ │ └── .DS_Store
│ │ ├── img
│ │ │ └── .DS_Store
│ │ ├── index.php
│ │ └── js
│ │ │ ├── .DS_Store
│ │ │ └── generic.js
│ ├── scripts
│ │ └── dbexport.php
│ └── tmp
│ │ ├── cache
│ │ ├── .DS_Store
│ │ ├── describecategories
│ │ └── describeproducts
│ │ └── logs
│ │ └── .DS_Store
├── mvc
│ ├── .buildpath
│ ├── .project
│ ├── controller
│ │ └── Controller.php
│ ├── index.php
│ ├── model
│ │ ├── Book.php
│ │ └── Model.php
│ └── view
│ │ ├── booklist.php
│ │ └── viewbook.php
└── todo-list
│ ├── .DS_Store
│ ├── .gitignore
│ ├── .htaccess
│ ├── application
│ ├── .DS_Store
│ ├── controllers
│ │ └── itemscontroller.php
│ ├── models
│ │ └── item.php
│ └── views
│ │ ├── .DS_Store
│ │ └── items
│ │ ├── .DS_Store
│ │ ├── add.php
│ │ ├── delete.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── view.php
│ │ └── viewall.php
│ ├── config
│ └── config.php
│ ├── db
│ └── todo.sql
│ ├── index.php
│ ├── library
│ ├── bootstrap.php
│ ├── controller.class.php
│ ├── model.class.php
│ ├── shared.php
│ ├── sqlquery.class.php
│ └── template.class.php
│ ├── nbproject
│ ├── project.properties
│ └── project.xml
│ ├── public
│ ├── .DS_Store
│ ├── .htaccess
│ ├── css
│ │ └── empty
│ ├── img
│ │ └── empty
│ ├── index.php
│ ├── js
│ │ └── empty
│ └── swf
│ │ └── empty
│ ├── scripts
│ └── empty
│ └── tmp
│ ├── cache
│ └── empty
│ ├── logs
│ └── empty
│ └── sessions
│ └── empty
├── lab5
├── 5_3
│ ├── create_table.php
│ ├── insert.html
│ ├── insert_table.php
│ ├── query.php
│ ├── sale.php
│ ├── search.html
│ ├── search.php
│ └── startsale.php
├── 5_5
│ ├── addcategory.php
│ ├── admin.php
│ └── business_service.sql
├── 5_6
│ ├── add_biz.php
│ └── business.sql
├── 5_7
│ ├── biz_listings.php
│ └── business.sql
└── README.md
├── lab6
├── 6.1
│ ├── Bates.css
│ ├── Bates.html
│ ├── Cabinets.css
│ ├── Cabinets.html
│ ├── Fizzics1.html
│ ├── Fizzics2.html
│ └── images
│ │ ├── bond-paper.jpg
│ │ ├── bords.jpg
│ │ ├── bricks.jpg
│ │ └── confetti-background.png
└── 6.2
│ ├── 6.2.1.html
│ ├── 6.2.2.html
│ ├── 6.2.3.html
│ ├── 6.2.4.html
│ ├── 6.2.5.html
│ ├── 6.2.6.html
│ ├── 6.2.7.css
│ ├── 6.2.7.html
│ ├── 6.3.2.1.html
│ ├── 6.3.2.2.html
│ ├── 6.3.4.html
│ ├── 6.3.5.html
│ ├── 6.3.6.html
│ ├── 6.3.7.html
│ ├── 6.3.8.html
│ ├── 6.3.9.html
│ ├── Exercise1.css
│ ├── Exercise1.html
│ ├── Exercise2.1.html
│ ├── Exercise2.2.html
│ └── Exercise2.3.html
└── lab7
├── 7.1.xml
├── 7.2.html
├── 7.3.xml
├── 7.4.xml
├── Exercise 1
├── 7.5.4.html
├── 7.5.5.docx
└── SO SÁNH DTD VÀ XML SCHEMA.docx
└── Exercise 2
├── 57.xml
├── 7.6.2.1.php
├── 7.6.2.2.php
├── 7.6.3.1.php
├── 7.6.3.2.php
├── 7.6.4.php
├── 7.6.5.1.php
├── 7.6.5.2.php
├── 7.6.6.php
├── ingredients.xml
├── pet.xml
└── sins.xml
/README.md:
--------------------------------------------------------------------------------
1 | ## Bài tập môn công nghệ web và dịch vụ trực tuyến
2 | ### Nhóm : MTHH
3 | - Thành viên 1 : Nguyễn Quang Huy
4 | - Thành viên 2 : Bùi Việt Hoàng
5 | - Thành viên 3 : Nguyễn Văn Thanh
6 | - Thành viên 4 : Trần Quang Minh
7 |
8 | Xem đề bài tại: [https://github.com/trannguyenhan/html-css-js-workspace/tree/master/lab](https://github.com/trannguyenhan/html-css-js-workspace/tree/master/lab)
9 |
--------------------------------------------------------------------------------
/lab/Lab 00 - Setup environment.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 00 - Setup environment.doc
--------------------------------------------------------------------------------
/lab/Lab 06-1 - Styling with CSS.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 06-1 - Styling with CSS.doc
--------------------------------------------------------------------------------
/lab/Lab 06-2 - Layout with CSS.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 06-2 - Layout with CSS.doc
--------------------------------------------------------------------------------
/lab/Lab 07 - XML & XHTML.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 07 - XML & XHTML.doc
--------------------------------------------------------------------------------
/lab/Lab 1 - Basic HTML.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 1 - Basic HTML.doc
--------------------------------------------------------------------------------
/lab/Lab 2-1 - PHP Variables & HTML Input Form.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 2-1 - PHP Variables & HTML Input Form.doc
--------------------------------------------------------------------------------
/lab/Lab 2-2 - Conditional Statements.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 2-2 - Conditional Statements.doc
--------------------------------------------------------------------------------
/lab/Lab 3 - Javascript.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 3 - Javascript.doc
--------------------------------------------------------------------------------
/lab/Lab 4 - MVC Architecture & PHP Framework.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 4 - MVC Architecture & PHP Framework.doc
--------------------------------------------------------------------------------
/lab/Lab 5 - MySQL & PHP.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab/Lab 5 - MySQL & PHP.doc
--------------------------------------------------------------------------------
/lab0/README.md:
--------------------------------------------------------------------------------
1 | # IDE
2 | ### IDE : Eclipse
3 | ### Web server : Apache2, PHP7.4
4 | 
5 |
--------------------------------------------------------------------------------
/lab0/pic/ide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab0/pic/ide.png
--------------------------------------------------------------------------------
/lab1/ex1-BuiVietHoang.html:
--------------------------------------------------------------------------------
1 |
2 |
My name is Bui Viet Hoang
7 |9 | 10 | This is my team. 4 members 11 | Tran Quang Minh, 12 | Nguyen Quang Huy, 13 | Nguyen Van Thanh, 14 | and me 15 | 16 |
17 |19 | We are going to build a website on our own. Let' s just wait for our demo. 20 |
21 |Stay tuned
Personal detail | 16 |Image | 17 ||
---|---|---|
Name | 20 |Tran Quang Minh | 21 |![]() |
22 |
Address | 25 |Minh Khai, Hai Ba Trung, Ha Noi City | 26 ||
Phone | 29 |+84976575218 | 30 ||
quangminhtran22@gmail.com | 34 |||
minh.tq183594@sis.hust.edu.vn | 37 |||
Trần Quang Minh | 41 |||
Education process | 44 |Computer Science, Hanoi University of Sciene and Technology | 45 ||
Skills | 48 |C/C++, Java, Python Programming, Algorithms, English | 49 ||
Certifications | 52 |600 TOEIC | 53 ||
Hobbies | 56 |Football, Tennis, Music, Movie | 57 ||
Desire | 60 |Data scientist | 61 |
Personal info | 14 |Images | 15 ||
---|---|---|
Name | 18 |Bui Viet Hoang | 19 |![]() |
20 |
Address | 23 |237 Hoang Van Thai, Khuong Trung, Thanh Xuan, Ha Noi | 24 ||
Phone | 27 |0794112293 | 28 ||
buiviethoang12062000@gmail.com | 32 |||
Hoang.bv183540@sis.hust.edu.vn | 35 |||
BuiVietHoang | 39 |||
Skills | 42 |C++, JAVA, Python | 43 ||
Hobbies | 46 |Watching movies, music | 47 ||
Ambitions | 50 |AI reseacher | 51 |
This is my first paragraph
5 | Hello name attribute HTML link! 6 |This is a paragraph
16 |This is a paragraph
18 |This is a paragraph
20 |This is a paragraph
24 |This is another paragraph
25 |This is
a para
graph with line breaks
row 1, cell 1 | 58 |row 1, cell 2 | 59 |
row 2, cell 1 | 62 |row 2, cell 2 | 63 |
Heading | 71 |Another Heading | 72 |
---|---|
row 1, cell 1 | 75 |row 1, cell 2 | 76 |
row 2, cell 1 | 79 |row 2, cell 2 | 80 |
row 1, cell 1 | 88 |row 1, cell 2 | 89 |
row 2, cell 1 | 92 |93 | |
row 1, cell 1 | 101 |row 1, cell 2 | 102 |
row 2, cell 1 | 105 |106 | |
133 | Here is a short quotation here is a short quotation 134 |135 |
136 | Here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation. 137 |138 | 139 | -------------------------------------------------------------------------------- /lab1/exe1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
8 | The heading above is aligned to the center of this page. The heading above is aligned to the center of this page. The heading above is aligned to the center of this page. 9 |
10 |13 | This paragraph 14 | contains a lot of lines 15 | in the source code, 16 | but the browser 17 | ignores it. 18 |
19 |22 | This paragraph 23 | contains a lot of spaces 24 | in the source code, 25 | but the browser 26 | ignores it. 27 |
28 |
10 | Name : Nguyen Quang Huy 11 | Age : 20 12 | Email : trannguyenhan01092000@gmail.com 13 | Live : Luc Ngan, Bac Giang 14 | |
15 | ![]() |
16 |
Education process | 19 |Luc Ngan 1 High school, HUST |
20 |
Working process | 23 |HUST : 80% |
24 |
Society activities | 27 |Join clubs, social activities such as blood donation, ... |
28 |
Skills | 31 |C++, Java, Ubuntu, ... |
32 |
Experiences | 35 |4 months |
36 |
Certifications | 39 |HUST |
40 |
Hobbies | 43 |Football, Computer, Write blogs, Make money, Technology, Robot, ... |
44 |
Contact | 47 |![]() ![]() ![]() ![]() ![]() ![]() |
48 |
© in group One
52 | 53 | -------------------------------------------------------------------------------- /lab1/htmlstypeexamples.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |5 | This text is in Verdana and red
6 |7 | This text is in Times and green
8 |This text is 30 pixels high
9 | 10 | -------------------------------------------------------------------------------- /lab1/icon/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/icon/facebook.png -------------------------------------------------------------------------------- /lab1/icon/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/icon/github.png -------------------------------------------------------------------------------- /lab1/icon/global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/icon/global.png -------------------------------------------------------------------------------- /lab1/icon/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/icon/linkedin.png -------------------------------------------------------------------------------- /lab1/icon/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/icon/reddit.png -------------------------------------------------------------------------------- /lab1/icon/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/icon/twitter.png -------------------------------------------------------------------------------- /lab1/pic/_MG_7393.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/pic/_MG_7393.jpg -------------------------------------------------------------------------------- /lab1/pic/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/pic/avatar.jpg -------------------------------------------------------------------------------- /lab1/pic/hust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trannguyenhan/html-css-js-workspace/69a5af6010baba3ab1123695aa3c911657e7a2b9/lab1/pic/hust.png -------------------------------------------------------------------------------- /lab2.1/Exercise.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |10 | STORAGE THE BLOGS 11 | | 12 |13 | FEED 14 | | 15 |
18 | 19 | | 20 |21 | 22 | | 23 |
hãy di chuột qua link RED màu văn bản sẽ chuyển red
12 | 13 | GREEN 14 |hãy di chuột qua link GREEN màu văn bản sẽ chuyển green
15 | 16 | BLUE 17 |hãy di chuột qua link BLUE màu văn bản sẽ chuyển blue
18 | 19 | 46 | -------------------------------------------------------------------------------- /lab3/ex1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |27 | This is some sample text. 28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /lab3/ex5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |