Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Web technologies and programming – Lecture 9: HTML tables
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Web technologies and programming – Lecture 9: HTML tables
Thanh Kiều
90
50
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
After studying this chapter you will be able to understand: Adding images to web page, using images as links, image map, adding audio and video to web page, how to create tables, page lay-out using tables. | CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr. Tehseen Riaz Abbasi 1 2 3 3 grgf Adding images to web page Using images as links Image map Adding video to web page Adding audio o web page 4 How to create tables Page lay-out using tables 5 Tables display information in rows and columns Tables are commonly used to display all manner of data that fits in a grid such as train schedules, television listings, financial reports etc. 6 An HTML table consists of the element and one or more elements like Tables are divided into table rows with the tag. Table rows are divided into table data with the tag. A table row can also be divided into table headings with the tag. 7 In HTML tag is used to start a table while tag indicates the end of the table Table Structure tag starts a row of the table and ends the row is used to create a cell inside the row while ends the cell 8 The contents of the cell are written between and tags tag is used to declare the cell of the heading row of the table 9 An HTML Table with a Border Attribute If you do not specify a border for the table, it will be displayed without borders. A border can be added using the border attribute: 10 Name Registration No. Ali FA13-BCS-001 11 Name Registration No. Ali FA13-BCS-001 12 13 14 Table level attributes Row level attributes Cell level attributes 15 The Border Attribute: Indicates the presence of the border around the table The align Attribute: Other values for align are Center Left right 16 The bgcolor Attribute: sets the background color of the table The background Attribute: sets the specified image at the background of the table 17 The height and width Attributes: The cellpadding . | CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr. Tehseen Riaz Abbasi 1 2 3 3 grgf Adding images to web page Using images as links Image map Adding video to web page Adding audio o web page 4 How to create tables Page lay-out using tables 5 Tables display information in rows and columns Tables are commonly used to display all manner of data that fits in a grid such as train schedules, television listings, financial reports etc. 6 An HTML table consists of the element and one or more elements like Tables are divided into table rows with the tag. Table rows are divided into table data with the tag. A table row can also be divided into table headings with the tag. 7 In HTML tag is used to start a table while tag indicates the end of the table Table Structure tag starts a row of the table and ends the row is used to create a cell inside the row while ends the cell 8 The contents of the cell .
TÀI LIỆU LIÊN QUAN
Lecture Web technologies and programming – Lecture 31: Summary of Lecture 1 - 15
Lecture Web technologies and programming – Lecture 31: Summary of Lecture 1 - 15
Lecture Web technologies and programming – Lecture 2: The web application development process - Web project management
Lecture Web technologies and programming – Lecture 4: Modeling web applications and implementation and testing web application
Lecture Web technologies and programming – Lecture 29: Web services, intro to web hosting
Lecture Web technologies and programming – Lecture 4: Modeling web applications and implementation and testing web application
Lecture Web technologies and programming – Lecture 29: Web services, intro to web hosting
Lecture Web technologies and programming – Lecture 2: The web application development process - Web project management
Lecture Web technologies and programming – Lecture 32: Summary of Lecture 16-30
Lecture Web technologies and programming – Lecture 32: Summary of Lecture 16-30
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.