Bài tập  /  Bài đang cần trả lời

Khi tạo tệp HTML để giới thiệu bản thân, các phần tử nào nên được đặt trong phần tử <head> của tài liệu HTML?

----- Nội dung ảnh -----
PHẦN III. Câu trả lời ngắn. Thí sinh trả lời từ câu 1 đến câu 3
Câu 1: Khi tạo tệp HTML để giới thiệu bản thân, các phần tử nào nên được đặt trong phần tửcủa tài liệu HTML?
Câu 2: Để tạo tiêu đề phụ (Heading 2) trong phần tửcủa tài liệu HTML, bạn sử dụng thẻ nào?
Đáp án:

Câu 3: Khi muốn làm nổi bật nội dung trên trang web, bạn cần thực hiện những bước nào?
1 trả lời
Hỏi chi tiết
37
Tham khảo câu trả lời từ Trợ lý ảo Lazi
Khi tạo tệp HTML để giới thiệu bản thân, các phần tử nên được đặt trong phần tử `` của tài liệu HTML bao gồm:

1. **Tiêu đề tài liệu (``)**: Đây là tiêu đề hiển thị trên thanh tiêu đề của trình duyệt.<br><br>2. **Thẻ `<meta>`**: Các thẻ này cung cấp thông tin về tài liệu, như mô tả, từ khóa, và charset (bộ mã ký tự). Ví dụ:<br>- `<meta charset="UTF-8">`<br>- `<meta name="description" content="Giới thiệu về bản thân">`<br>- `<meta name="keywords" content="giới thiệu, bản thân">`<br><br>3. **Liên kết đến CSS (`<link>`)**: Nếu bạn có tệp CSS để định kiểu cho trang, hãy liên kết nó tại đây. Ví dụ:<br>- `<link rel="stylesheet" href="styles.css">`<br><br>4. **Script (`<script>`)**: Nếu có JavaScript cần sử dụng hoặc liên kết đến các tệp script, chúng cũng có thể được đặt trong thẻ `<head>`.<br><br>5. **Thẻ đồ họa (`<base>`)** (nếu cần): Thẻ này xác định URL cơ sở cho tất cả các liên kết tương đối trong tài liệu.<br><br>Các phần tử này sẽ giúp cải thiện khả năng tối ưu hóa cho công cụ tìm kiếm (SEO) và đảm bảo tài liệu hoạt động đúng cách trong trình duyệt. </div> </fieldset> </div> <script> function redirectToLoginPage() { if (confirm("Bạn cần đăng nhập để thực hiện chức năng hỏi chi tiết!")) { window.open("https://lazi.vn/users/login", "_blank"); } else { return false; } } </script><script> var $ = jQuery.noConflict(); $(function () { $('.reply_question_link').click(function () { var id = $(this).data('id'); if (id) { $('#form_reply_comment_' + id).toggle(); $('#form_reply_question_comment_' + id).focus(); } }); $('.reply_question_action').click(function () { var detail_parent_id = $(this).data('id'); var reply_user = $(this).data('name'); if (reply_user && detail_parent_id) { $('.create_question').val(detail_parent_id); // $('.enter_question').val(reply_user + ' '); } }); $('.show_chatgpt').click(function () { $('.chatgpt_answer').toggle(); }); }); function onShow(id) { $('#form_comment_' + id).toggle(); $("#textarea_comment_" + id).focus(); } function push_repy_comment(id, parent_id) { var url = "/edu/push_comment_question/" + id; var detail_parent_id = $("#exercise_comment_id_" + parent_id).val(); var reply_cmt_question_content = $("#form_reply_question_comment_" + parent_id).val(); if (!reply_cmt_question_content || reply_cmt_question_content == "") { alert('Bạn phải nhập nội dung bình luận!'); return false; } if (reply_cmt_question_content.length < 3) { alert('Nội dung quá ngắn. Bạn phải gửi nội dung có ý nghĩa, có câu chữ, không gửi những ký tự vô nghĩa như chấm, gạch chéo, like, v.v.. phát hiện sẽ bị xử lý nghiêm khắc'); return false; } $('#form_reply_question_comment_' + parent_id).val(''); $.post(url, { content: reply_cmt_question_content, parent_comment_id: parent_id, detail_parent_id: detail_parent_id }, function (data_response) { $('#form_reply_comment_' + parent_id).prepend( '<div class="reply_question_comment_content"' + 'id="reply_question_comment_id_' + parent_id + '">' + '<main class="main-content">' + '<a target="_blank" href="https://lazi.vn/user/">' + '<img width="35" style="border-radius: 100%;" src="https://cdn.lazi.vn/storage/uploads/avatar_small.png" alt="">' + '</a>' + '<span class="text_cmt_content">' + '<strong>' + '<a target="_blank" href="https://lazi.vn/user/">' + '' + '</a>' + '</strong>' + '<p style="margin: 0;">' + reply_cmt_question_content + '</p>' + '<span>' + '</main>' + '<div class="action-comment-question">' + '<div class="action-field reply_question_link" data-id="' + data_response.data + '">' + '' + '<span id="user_login" onclick="redirectToLoginPage()">' + 'Trả lời' + '</span>' + '' + '</div>' + '<div class="comment_time">' + 'vài giây trước' + '</div>' + '</div>' + '<div>' ); }); } function push_comment(id, parent_id) { var url = "/edu/push_comment_question/" + id; var cmt_question_content = $("#textarea_comment_" + id).val(); if (!cmt_question_content || cmt_question_content == "") { alert('Bạn phải nhập nội dung bình luận!'); return false; } if (cmt_question_content.length < 3) { alert('Nội dung quá ngắn. Bạn phải gửi nội dung có ý nghĩa, có câu chữ, không gửi những ký tự vô nghĩa như chấm, gạch chéo, like, v.v.. phát hiện sẽ bị xử lý nghiêm khắc'); return false; } $('#textarea_comment_' + id).val(''); $.post(url, { content: cmt_question_content, parent_comment_id: parent_id, detail_parent_id: 0 }, function (data_response) { $('.user_comment').append( '<main class="main-content">' + '<a target="_blank" href="https://lazi.vn/user/">' + '<img width="35" style="border-radius: 100%;" src="https://cdn.lazi.vn/storage/uploads/avatar_small.png" alt="">' + '</a>' + '<span class="text_cmt_content">' + '<strong>' + '<a target="_blank" href="https://lazi.vn/user/">' + '' + '</a>' + '</strong>' + '<p style="margin: 0;">' + cmt_question_content + '</p>' + '<span>' + '</main>' + '<div class="action-comment-question">' + '<div class="action-field reply_question_link" data-id="' + data_response.data + '">' + '' + '<span id="user_login" onclick="redirectToLoginPage()">' + 'Trả lời' + '</span>' + '' + '</div>' + '<div class="comment_time">' + 'vài giây trước' + '</div>' + '</div>' ); }); } </script><style>.popup{width:100vmax;height:100vh;background:rgb(192,192,192,0.5);opacity:0;text-align:center;font-size:14px;border:none;z-index:888888;position:fixed;top:-150%;left:50%;transition:top 0ms ease-in-out 150ms,opacity 150ms ease-in-out 0ms,transform 500ms ease-in-out 0ms;}.popup-container-content{width:100%;max-width:400px;background:#fff;position:absolute;top:32%;left:50%;transform:translate(-50%,-30%)scale(1.05);border-radius:15px;padding:20px 30px;box-shadow:rgba(0,0,0,0.24)0 3px 8px;}.popup.active{top:50%;opacity:1;transform:translate(-50%,-50%)scale(1);transition:top 0ms ease-in-out 0ms,opacity 200ms ease-in-out 0ms,transform 20ms ease-in-out 0ms;}.popup .login-header h2{padding:5px 0;width:100%;height:auto;font-size:25px;}.popup .form-element{margin:15px 0;width:100%;display:flex;align-items:center;justify-content:center;box-sizing:border-box;}.popup .api-social-login{width:100%;margin:auto;display:flex;justify-content:space-between;}.popup .api-social-login .social-login{padding:10px;border:none;border-radius:5px;font-size:14px;display:flex;justify-content:center;align-items:center;column-gap:10px;}.popup .api-social-login .social-login:hover{background:lightseagreen;}.popup .api-social-login .social-login:hover a{color:#FFF;}.popup .api-social-login .social-login img{width:15px;}.popup .form-element .form-input{padding:25px 20px;width:100%;font-size:15px;border:none;border-radius:3px;background:#EEEEEE;display:flex;box-sizing:border-box;}.popup .form-element .btn-submit{width:100%;padding:10px 20px;height:auto;border:none;border-radius:3px;background:#14928E;color:#fff;font-size:18px;}.popup .form-element .btn-submit:hover{background:linear-gradient(to right,lightskyblue,lightseagreen,lightskyblue);}.popup .form-element .form-input:focus{outline:1px solid lightseagreen;}.popup .login-register-link{display:flex;}.popup .login-register-link a:hover{color:darkviolet;}.popup .lz-logo{width:100px;}.lz-logo img{width:60px;position:absolute;top:15px;left:35px;}.popup .close-btn{position:absolute;top:10px;right:10px;font-size:20px;font-weight:500;width:15px;height:15px;color:red;background:#EEEEEE;display:flex;justify-content:center;align-items:center;padding:6px 6px;border-radius:50%;cursor:pointer;}.popup .close-btn:hover{background:#FF3333;color:#FFF;}</style><div class="popup"><div class="popup-container-content"><div class="lz-logo"><a target="_blank" href="https://lazi.vn"><img src="https://lazi.vn/uploads/logo/logo_lazi.svg" alt="lazi logo"></a></div><div class="close-btn">×</div><div style="margin-top: 40px"><div class="form-element login-header"><h2>Đăng nhập</h2></div><form action="https://lazi.vn/users/login" method="post" accept-charset="utf-8" id="login"><div style="display:none;"><input type="hidden" name="redirect_to" value="edu/exercise/2327864/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-head-cua-tai-lieu-html" /></div><div class="form-element"><input type="text" name="email" value="" title="Nhập email của bạn..." placeholder="Email or phone..." class="form-input" required id="email" /></div><div class="form-element"><input title="Nhập mật khẩu của bạn..." class="form-input" type="password" placeholder="Nhập mật khẩu..." name="password" maxlength="50" required></div><div class="form-element"><button class="btn-submit" title="Đăng nhập" name="btnLogin" type="submit">Đăng nhập</button></div></form><div class="form-element api-social-login"><button class="social-login"> <img src="https://lazi.vn/system\cms\themes\mytheme\new_layout\images\fb.png" alt="fb"> <a rel="nofollow noindex" href="https://lazi.vn/users/fb?redirect_to=edu/exercise/2327864/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-head-cua-tai-lieu-html"> <span> Đăng nhập với facebook </span> </a> </button> <button class="social-login"> <img src="https://lazi.vn/system\cms\themes\mytheme\new_layout\images\gg.png" alt="gg"> <a rel="nofollow noindex" href="https://lazi.vn/users/gg?redirect_to=edu/exercise/2327864/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-head-cua-tai-lieu-html"> <span> Đăng nhập với google </span> </a> </button></div><div class="form-element login-register-link"><span> <a href="https://lazi.vn/users/register?redirect_to=edu/exercise/2327864/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-head-cua-tai-lieu-html" rel="nofollow noindex">Đăng ký</a>  </span> <!--<a target="_blank" href="http://lazi.vn/users/register">Đăng ký </a>--> <span> | <a href="https://lazi.vn/users/reset_pass">Quên mật khẩu?</a> </span> <!--<a target="_blank" href="http://lazi.vn/users/reset_pass">| Quên mật khẩu?</a>--></div><div class="form-element"><p class="text-dieu-khoan" style="padding: 0; margin: 0;">Bằng cách nhấp vào Đăng nhập, bạn đồng ý <a target="_blank" href="https://lazi.vn/chinh-sach" style="color: blue">Chính sách bảo mật</a> và <a target="_blank" style="color: blue" href="https://lazi.vn/dieu-khoan-su-dung">Điều khoản sử dụng</a> của chúng tôi. Nếu đây không phải máy tính của bạn, để đảm bảo an toàn, hãy sử dụng Cửa sổ riêng tư (Tab ẩn danh) để đăng nhập (New Private Window / New Incognito Window).</p></div></div></div></div><script> var $ = jQuery.noConflict(); $(function () { $('#show-login').click(function () { $('.popup').addClass('active'); }); $('.close-btn').click(function () { $('.popup').removeClass('active'); }); $('.show-login').click(function () { $('.popup').addClass('active'); }); }); </script><div class="fill_all"><script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script><script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/57976558/Ureka_Supply_lazi.vn_Outstream_1x1_311024', [1,1], 'div-gpt-ad-1730343771758-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script><div id='div-gpt-ad-1730343771758-0'><script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1730343771758-0'); }); </script></div></div><div class="nen_trang_full lz-question--content lz-view_answer-content"><div class="lz-question--title"><div class="lz-question--title_left">1 trả lời</div><div class="lz-question--title_right"><a class="lz-question--title_item" href="/event/d/130/giai-thuong-thang-10-nam-2024"> <img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/gift.svg"/><p>Thưởng th.10.2024</p></a> <a target="_blank" class="lz-question--title_item" href="/statistic"> <img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/rank.svg"/><p>Xếp hạng</p></a> <a target="_blank" class="lz-question--title_item" href="/quiz/challenge"> <img width="40" src="https://lazi.vn/uploads/icon/dolphin-marine-swim-sea.webp"/><p>Đấu trường tri thức <span style="color:#F07281">+500K <i class="fa fa-forward" aria-hidden="true"></i></span></p></a></div></div></div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@1.8.3/dist/css/lightgallery.min.css"><script src="https://cdn.jsdelivr.net/npm/lightgallery@1.8.3/dist/js/lightgallery-all.min.js"></script><script type="text/javascript"> $(function () { $(document).ready(function () { $(".lightgallery").lightGallery({ mode: 'lg-rotate' }); $(".lightgallery").on('click', function () { $('.lazi-header').css('z-index', 99); }); }); }); </script><div class="nen_trang_full lz-table"><div class="lz-table--vote"><div class="lz-table--vote-item lz-table--vote_like" onclick="Cong(3912876,'edu')"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/question/like-bold.svg"/><div class="kq_cong_3912876">1</div></div><div class="lz-table--vote-item lz-table--vote_dislike" onclick="Tru(3912876,'edu')"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/question/like.svg"/><div class="kq_tru_3912876">0</div></div></div><script type="text/javascript"> var $ = jQuery.noConflict(); function Cong(entry_id, entry_module) { $("#rating_process_" + entry_id).html('<img src="https://lazi.vn/uploads/icon/loader.gif">'); var current_rating = $('input[name="rating_current_' + entry_id + '"]').val(); if (current_rating == 1) { setTimeout(function () { $("#rating_process_" + entry_id).html('<img src="https://lazi.vn/uploads/icon/active_16.png"> +1 thành công, xin cảm ơn!'); }, 300); return false; } else { $('input[name="rating_current_' + entry_id + '"]').val(1); } $.ajax({ type: 'POST', url: '/interaction/rating_comment', data: 'entry_id=' + entry_id + '&entry_module=' + entry_module + '&cong_tru=1', dataType: 'json', success: function (data) { if (data.status == 'ok') { setTimeout(function () { $('.kq_cong_' + entry_id).text(data.cong); $('.kq_tru_' + entry_id).text(data.tru); $(".rating_process_" + entry_id).html('<img src="https://lazi.vn/uploads/icon/active_16.png"> +1 thành công, xin cảm ơn!'); }, 200); } else { alert('Có lỗi xảy ra, vui lòng thử lại sau!'); } } }); } function Tru(entry_id, entry_module) { $("#rating_process_" + entry_id).html('<img src="https://lazi.vn/uploads/icon/loader.gif">'); var current_rating = $('input[name="rating_current_' + entry_id + '"]').val(); if (current_rating == 2) { setTimeout(function () { $("#rating_process_" + entry_id).html('<img src="https://lazi.vn/uploads/icon/active_16.png"> -1 thành công, xin cảm ơn!'); }, 300); return false; } else { $('input[name="rating_current_' + entry_id + '"]').val(2); } $.ajax({ type: 'POST', url: '/interaction/rating_comment', data: 'entry_id=' + entry_id + '&entry_module=' + entry_module + '&cong_tru=2', dataType: 'json', success: function (data) { if (data.status == 'ok') { setTimeout(function () { $('.kq_cong_' + entry_id).text(data.cong); $('.kq_tru_' + entry_id).text(data.tru); $(".rating_process_" + entry_id).html('<img src="https://lazi.vn/uploads/icon/active_16.png"> -1 thành công, xin cảm ơn!'); }, 200); } else { alert('Có lỗi xảy ra, vui lòng thử lại sau!'); } } }); } </script><div class="lz-table--content"><div class="lz-table--header"><div class="lz-table-info"><a href="/user/muadong-va-changgkho"> <img src="https://cdn.lazi.vn/storage/uploads/users/avatar_thumb/1732872319_lazi_218255.jpg"/> </a> <a class="laz-table--username" target="_blank" href="/user/muadong-va-changgkho">Cuog</a><div class="lz-dot"></div><div class="laz-table--time">28/10 21:02:42</div></div><div class="lz-table-meta" style="flex:inherit;">+5đ tặng</div></div><div class="lz-table--body div_blur"><div class="lz-table--ans"><ul><li><p><strong>Câu 1:</strong> Khi tạo tệp HTML để giới thiệu bản thân, các phần tử nên được đặt trong phần tử <head> của tài liệu HTML bao gồm:</p><ul><li><title>: Tiêu đề trang xuất hiện trên thanh tiêu đề của trình duyệt.</li><li><meta>: Các thẻ meta cung cấp thông tin về tài liệu như mã hóa ký tự (<meta charset="UTF-8">), mô tả trang (<meta name="description" content="Giới thiệu bản thân">), từ khóa, và các thuộc tính khác.</li><li><link>: Liên kết đến các tệp CSS bên ngoài để định dạng trang.</li><li><style>: Định dạng nội tuyến nếu bạn muốn viết CSS trực tiếp trong tệp HTML.</li><li><script>: Liên kết đến các tệp JavaScript bên ngoài hoặc mã JavaScript nội tuyến.</li></ul></li><li><p><strong>Câu 2:</strong> Để tạo tiêu đề phụ (Heading 2) trong phần thân của tài liệu HTML, bạn sử dụng thẻ <h2>.</p></li><li><p><strong>Câu 3:</strong> Khi muốn làm nổi bật nội dung trên trang web, bạn có thể thực hiện các bước sau:</p><ul><li>Sử dụng <strong>CSS</strong> để tùy chỉnh màu sắc, kích thước chữ, và các thuộc tính khác cho nội dung cần nổi bật.</li><li>Sử dụng các <strong>thẻ HTML</strong> như  <i> </i> , <b></b> để nhấn mạnh văn bản (in đậm hoặc in nghiêng).</li><li>Tạo các <strong>hiệu ứng động</strong> với CSS hoặc JavaScript để thu hút sự chú ý.</li></ul></li></ul></div></div><div class="sign-popup" ><div class="container"><div class="sign-row sign-title"><h1 style="font-size: 23px;font-weight: bold;line-height: 35px;">Mở khóa để xem toàn bộ nội dung trả lời</h1><div class="why-show"><span style="font-size: 12px; color: #666">(?)</span><div class="why-block"><span style="font-size: 12px;"> Bạn đã đạt đến giới hạn của mình. Bằng cách Đăng ký tài khoản, bạn có thể xem toàn bộ nội dung trả lời </span></div></div></div><div class="sign-row sign-desc"><span>Cải thiện điểm số của bạn bằng cách đăng ký tài khoản Lazi.<br>Xem toàn bộ các câu trả lời, chat trực tiếp 1:1 với đội ngũ Gia sư Lazi bằng cách Đăng nhập tài khoản ngay bây giờ </span></div><div class="sign-row sign-login"><a rel="nofollow noindex" href="https://lazi.vn/users/gg?redirect_to=edu/exercise/2327864/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-head-cua-tai-lieu-html" class="sign-btn sign-btn-google"> <img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/new_layout/images/google.png" alt="" style="width: 30px;"/> <span> Đăng nhập bằng Google </span> </a></div><div class="sign-row sign-login"><a rel="nofollow noindex" href="https://lazi.vn/users/fb?redirect_to=edu/exercise/2327864/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-head-cua-tai-lieu-html" class="sign-btn sign-btn-facebook"> <img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/new_layout/images/facebook.png" alt="" style="width: 30px;"/> <span> Đăng nhập bằng Facebook </span> </a></div><div class="sign-row sign-already-acc"><span> Tôi đã có tài khoản? <a rel="nofollow noindex" style="color: blue;" href="https://lazi.vn/users/login?redirect_to=edu/exercise/2327864/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-head-cua-tai-lieu-html" target="_blank" id="show-login"> Đăng nhập </a> </span></div></div></div></div></div><script src="https://lazi.vn/system/cms/themes/mytheme/js/readmore.js" type="text/javascript"></script><script type="text/javascript"> var $ = jQuery.noConflict(); $('.content_expandable').readmore({speed: 500}); $(document).ready(function () { //Rating Comment $(".user_cham_diem").click(function () { //Mã ANS var ans_id = $(this).attr('data_id'); //Điểm chấm var diem = $(this).attr('title'); //Điểm hiện tại var user_rating_current = $('input[name="user_rating_current_' + ans_id + '"]').val(); //Thiết lập điểm mới $('input[name="user_rating_current_' + ans_id + '"]').val(diem); $("#rating_process_cham_diem_" + ans_id).html('<img src="https://lazi.vn/uploads/icon/loader.gif">'); if (diem != user_rating_current) { $("span[data_id='" + ans_id + "']").removeClass("user_cham_diem_active"); $(this).addClass("user_cham_diem_active"); $.ajax({ type: 'POST', url: '/edu/cong_diem_giai_bai', data: 'id=' + ans_id + '&point=' + diem, dataType: 'json', success: function (data) { if (data.status == 'ok') { setTimeout(function () { $("#rating_process_cham_diem_" + ans_id).html('Thành công!'); }, 200); } else { $("#rating_process_cham_diem_" + ans_id).html('Không được tự chấm bài cho chính mình. Cố tình sẽ bị khóa tài khoản!'); } } }); } else { setTimeout(function () { $("#rating_process_cham_diem_" + ans_id).html('Thành công!'); }, 200); } }); }); </script><script> var $ = jQuery.noConflict(); $(function () { $('.lz-table--actions_comment').click(function (e) { let id = $(this).data('id'); $('#form_comment_' + id).toggle(); }); }); function pushReply(id) { var comment_id = "comment_" + id; var comment_zone = document.getElementById("comment_zone_" + id); var content = $('#repy_content_' + id).val(); if (!content || content == '<br>') { alert('Bạn phải nhập nội dung bình luận!'); return false; } if (content.length < 10) { alert('Nội dung quá ngắn. Bạn phải gửi nội dung có ý nghĩa, có câu chữ, nghiêm cấm gửi những ký tự vô nghĩa như chấm, gạch chéo, like, v.v.. phát hiện sẽ bị xử lý nghiêm khắc'); return false; } $('#repy_content_' + id).val(''); $.post("/edu/api_push_comment/" + id, {content: content}, function (data_response) { $('#comment_title_' + id).text('Bình luận'); $('#' + comment_id).append( '<div class="lz-table--comment--item"> ' + '<a target="_blank" href="/user/">' + '<img src="">' + '</a>' + '<div class="lz-table--comment-info">' + '<a target="_blank" href="/user/" class="lz-table-comment-username"></a>' + '<div class="lz-table-comment-content">' + content + '</div>' + '</div>' + '</div>' ); }); } </script><style>.div_blur{position:relative;top:0;left:0;max-height:150px;overflow:hidden;text-overflow:ellipsis;background:linear-gradient(transparent,rgb(255,255,255,0.1)10%,rgb(255,255,255,0.5)30%,#FFF 90%,#FFF);}.div_blur::after{content:"";display:flex;justify-content:center;align-items:flex-end;position:absolute;bottom:0;left:0;width:100%;height:100%;box-sizing:border-box;color:black;cursor:pointer;background:linear-gradient(transparent,rgb(255,255,255,0.1)10%,rgb(255,255,255,0.5)30%,#FFF 90%,#FFF);}.nen_trang_full.lz-table.no-login{max-height:max-content;position:relative;top:0;left:0;}.sign-popup{margin-bottom:25px;width:95%;position:relative;height:auto;justify-content:center;border-radius:10px;flex-direction:column;row-gap:10px;z-index:1000;color:#000000;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;transform:scale(1.09);background:#FFF;box-shadow:rgba(17,17,26,0.1)0 8px 24px,rgba(17,17,26,0.1)0 16px 56px,rgba(17,17,26,0.1)0 24px 80px;}.sign-popup > .container > .sign-row.sign-title > .why-show > .why-block{position:absolute;top:60px;right:30px;width:auto;max-width:70%;padding:5px 10px;box-sizing:border-box;border-radius:10px;border:1px solid #F5F5F5;height:auto;background:#FFF;box-shadow:rgba(0,0,0,0.25)0 14px 28px,rgba(0,0,0,0.22)0 10px 10px;display:none;}.sign-popup > .container > .sign-row.sign-title > .why-show:hover .why-block{display:block;}.sign-popup > .container{width:100%;height:100%;display:flex;flex-direction:column;padding:25px;box-sizing:border-box;row-gap:10px;}.sign-popup > .container > .sign-row{width:100%;height:auto;max-height:max-content;}.sign-popup > .container > .sign-row.sign-title{display:flex;justify-content:space-between;}.sign-popup > .container > .sign-row.sign-desc > span{display:flex;flex-wrap:wrap;}.sign-popup > .container > .sign-row.sign-login{display:flex;justify-content:center;align-items:center;}.sign-popup > .container > .sign-row.sign-login > .sign-btn{width:50%;border-radius:100px;display:flex;justify-content:center;align-items:center;padding:5px 0;column-gap:5px;cursor:pointer;}.sign-popup > .container > .sign-row.sign-login > .sign-btn.sign-btn-google{box-shadow:rgba(0,0,0,0.24)0 3px 8px;}.sign-popup > .container > .sign-row.sign-login > .sign-btn.sign-btn-facebook{background:#1196F5;color:#FFF;}.sign-popup > .container > .sign-row.terms{display:flex;justify-content:center;align-items:center;}.sign-popup > .container > .sign-row.sign-already-acc{display:flex;flex-direction:column;justify-content:center;align-items:center;row-gap:5px;}.sign-popup > .container > .sign-row.sign-already-acc > .view-ads{display:flex;flex-direction:column;align-items:center;justify-content:center;}.sign-popup > .container > .sign-row.sign-already-acc > .view-ads > button{padding:10px 20px;border-radius:10px;border:none;background:RGB(247,211,71);box-shadow:rgba(0,0,0,0.24)0 3px 8px;display:flex;column-gap:5px;color:#FFF;font-weight:600;font-size:14px;align-items:center;justify-content:center;cursor:pointer;}.sign-popup > .container > .sign-row.sign-login > .sign-btn:hover,.sign-popup > .container > .sign-row.sign-already-acc > .view-ads > button:hover{opacity:0.6;}</style><div class="nen_trang_full lz-policy" style="line-height:45px;"><div class="lz-policy--left"><a href="/event/d/9/chinh-sach-thuong-cho-thanh-vien" target="_blank"> <img style="float: left;" src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/new_layout/images/thinking.svg"/> Trả lời nhanh trong <span>10 phút</span> và <span>nhận thưởng</span> </a></div><div class="lz-policy--right"><a href="/quiz/challenge" target="_blank"> <img style="float: left;" width="40" src="https://lazi.vn/uploads/icon/dolphin-marine-swim-sea.webp"/> Đấu trường tri thức <span>+500K <i class="fa fa-forward" aria-hidden="true"></i></span> </a></div></div><div class="nen_trang_full lz-tag"><!--<img src="system/cms/themes/mytheme/new_layout/images/tag.svg"/>--> <a href="https://lazi.vn/edu/tag/khi-tao-tep-html-de-gioi-thieu-ban-than-cac-phan-tu-nao-nen-duoc-dat-trong-phan-tu-amp-lt-head-amp-gt-cua-tai-lieu-html">Khi tạo tệp HTML để giới thiệu bản thân các phần tử nào nên được đặt trong phần tử <head> của tài liệu HTML?</a><a href="https://lazi.vn/edu/lists/tin-hoc/lop-12">Tin học - Lớp 12</a><a href="https://lazi.vn/edu/lists/tin-hoc">Tin học</a><a href="https://lazi.vn/edu/lists/all/lop-12">Lớp 12</a></div><div class="nen_trang_full" style="margin-bottom: 10px;"><div class="lz-tra-loi mb-tra-loi"><div class="lz-tra-loi--left"><div class="tra-loi--header"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/new_layout/images/logo.png"/><p>Bạn hỏi - Lazi trả lời</p></div><p style="font-size: 24px;line-height: 35px; font-weight: bold; color: #000000; margin: 15px 0">Bạn muốn biết điều gì?</p><a href="edu/gui_bai_tap">GỬI CÂU HỎI</a></div><div class="lz-tra-loi--right"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/new_layout/images/traloi.svg"/></div></div><div style="padding-left: 10px;padding-top: 10px;"><strong style="color:red;">Học tập không giới hạn cùng học sinh cả nước và AI, sôi động, tích cực, trải nghiệm</strong></div></div><div class="nen_trang_full"><table> <tr> <td colspan="2"><strong>Tham gia Cộng đồng Lazi trên các mạng xã hội</strong></td> </tr> <tr> <td>Fanpage:</td> <td><a rel="nofollow noindex" target="_blank" href="https://www.facebook.com/lazi.vn">https://www.fb.com/lazi.vn</a></td> </tr> <tr> <td>Group:</td> <td><a rel="nofollow noindex" target="_blank" href="https://www.facebook.com/groups/lazi.vn">https://www.fb.com/groups/lazi.vn</a></td> </tr> <tr> <td>Kênh FB:</td> <td><a rel="nofollow noindex" target="_blank" href="https://m.me/j/AbY8WMG2VhCvgIcB/">https://m.me/j/AbY8WMG2VhCvgIcB</a></td> </tr> <tr> <td>LaziGo:</td> <td><a rel="nofollow noindex" target="_blank" href="https://go.lazi.vn/join/lazigo">https://go.lazi.vn/join/lazigo</a></td> </tr> <tr> <td>Discord:</td> <td><a rel="nofollow noindex" target="_blank" href="https://discord.gg/4vkBe6wJuU">https://discord.gg/4vkBe6wJuU</a></td> </tr> <tr> <td>Youtube:</td> <td><a rel="nofollow noindex" target="_blank" href="https://www.youtube.com/@lazi-vn">https://www.youtube.com/@lazi-vn</a></td> </tr> <tr> <td>Tiktok:</td> <td><a rel="nofollow noindex" target="_blank" href="https://www.tiktok.com/@lazi.vn">https://www.tiktok.com/@lazi.vn</a></td> </tr> </table></div><!--<div style="width:100%;text-align: center;"><a href="https://giasu.lazi.vn/?utm_source=lazi.vn&utm_content=cta_banner_mid_mb" title="Gia sư trực tuyến Lazi - Giáo viên giỏi và tận tâm, học sinh tiến bộ từng ngày" target="_blank"><img src="https://lazi.vn/uploads/adv/lazi_giasu_homepage_mb_3.png"></a> <a href="https://giasu.lazi.vn/?utm_source=lazi.vn&utm_content=cta_banner_mid_pc" title="Gia sư trực tuyến Lazi - Giáo viên giỏi và tận tâm, học sinh tiến bộ từng ngày" target="_blank"><img src="https://lazi.vn/uploads/adv/lazi_giasu_homepage_mb_3.png"></a></div>--><div class="fill_all mgbottom10px"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8829982124826340" crossorigin="anonymous"></script><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8829982124826340" data-ad-slot="5462304225" data-ad-format="auto" data-full-width-responsive="true"></ins><script> try { (adsbygoogle = window.adsbygoogle || []).push({}); } catch (e) { console.error('Google AdSense error: ', e); } </script></div><div class="nen_trang_full lz-relation"><div class="lz-relation--title">Bài tập liên quan</div><div class="lz-relation--content"><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2327832/khi-tao-tep-html-trong-sublime-text-ban-nen-luu-tep-voi-phan-mo-rong-nao-de-trinh-duyet-co-the-nhan-dien-dung-dinh-dang"> Khi tạo tệp HTML trong Sublime Text, bạn nên lưu tệp với phần mở rộng nào để trình duyệt có thể nhận điện đúng định dạng? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">2 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2323812/gia-su-co-thong-tin-ve-chuyen-gi-do-ma-em-quen-biet-tren-mang-xh-em-nen-lam-gi"> Giả sử có thông tin về chuyện gì đó mà em quen biết trên mạng XH, em nên làm gì? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">0 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321135/hay-ke-ten-va-nhan-xet-ve-uu-diem-nhuoc-diem-cua-cac-phan-mem-mo-phong-trong-giao-duc-ma-em-da-su"> Hãy kể tên và nhận xét về ưu điểm, nhược điểm của các phần mềm mô phỏng trong giáo dục mà em đã sử dụng. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321134/hay-chia-se-mot-trai-nghiem-cu-the-cua-em-khi-su-dung-mot-phan-mem-mo-phong-va-giai-thich-phan-mem"> Hãy chia sẻ một trải nghiệm cụ thể của em khi sử dụng một phần mềm mô phỏng và giải thích phần mềm mô phỏng đó đã giúp em hiểu sâu hơn về một khái niệm khoa học hay toán học cụ thể như thế nào. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321133/su-dung-phet-de-kham-pha-mot-mo-phong-khoa-hoc-bat-ki-trong-mon-hoc-ma-em-yeu-thich-sau-do-tra-loi"> Sử dụng PhET để khám phá một mô phỏng khoa học bất kì trong môn học mà em yêu thích, sau đó, trả lời các câu hỏi dưới đây: - Tên mô phỏng, tên môn học là gì? - Có thể thay đổi các thông số nào của mô phỏng? - Tương tác với mô phỏng bằng cách nào? - Kết quả của mô phỏng bao gồm những gì? - Lợi ích của mô phỏng này là gì? - Những hạn chế nếu có khi tạo ra thí nghiệm này ngoài đời thực là gì? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321132/nhung-phuong-an-nao-sau-day-la-han-che-cua-phan-mem-mo-phong-phet-a-khong-duoc-phep-thay-doi-tham"> Những phương án nào sau đây là hạn chế của phần mềm mô phỏng PHET? A. Không được phép thay đổi tham số đầu vào của các mô hình. B. Hạn chế về lĩnh vực và môn học. C. Phụ thuộc vào công nghệ (máy tính và mạng Internet). D. Không tải được các mô hình mô phỏng về máy tính cá nhân. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321131/phuong-an-nao-sau-day-la-phat-bieu-khong-dung-ve-phan-mem-mo-phong-phet-a-cho-phep-quan-sat-cac-mo"> Phương ăn nào sau đây là phát biểu không đúng về phần mềm mô phỏng PhET? A. Cho phép quan sát các mô hình mô phỏng được dựng sẵn. B. Cho phép thiết lập các mô phỏng mới dựa trên các công cụ có sẵn. C. Cho phép thay đổi các tham số đầu vào của mô hình để quan sát sự thay đổi của kêt quả đầu ra. D. Giao diện hoàn toàn bằng tiếng Anh. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321130/phuong-an-nao-sau-day-la-mo-ta-dung-ve-tac-dung-cua-phan-mem-mo-phong-phet-a-tao-ra-cac-bai-giang"> Phương án nào sau đây là mô tả đúng về tác dụng của phần mềm mô phỏng PhET? A. Tạo ra các bài giảng trực tuyển về các môn học khác nhau. B. Mô phỏng các mô hình, hiện tượng khoa học để giúp học sinh dễ dàng quan sát và hiểu sâu hơn. C. Diễn đàn chuyên môn trực tuyền cho giáo viên và học sinh. D. Phân tích dữ liệu và kết quả từ các thí nghiệm để đưa ra các kết luận khoa học. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321129/moi-phat-bieu-sau-la-dung-hay-sai-a-mo-phong-trong-giao-duc-giup-hoc-sinh-phat-trien-ki-nang-tu"> Mỗi phát biểu sau là đúng hay sai? a) Mô phỏng trong giáo dục giúp học sinh phát triển kĩ năng tự học và nâng cao khả năng giải quyết vấn đề. b) Mô phỏng trong giáo dục là công cụ thay thế cho giáo viên trong giảng dạy. c) Sử dụng mô phỏng trong giáo dục có thể giúp học sinh thấy được mối liên hệ giữa lí thuyết và thực tiễn, từ đó nâng cao hiệu quả ứng dụng kiến thức. d) Sử dụng mô phỏng trong giáo dục giúp tăng cường sự tương tác và tham gia của học sinh trong quá trình học. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2321128/phat-bieu-nao-la-dung-trong-cac-phat-bieu-sau-a-co-rat-nhieu-phan-mem-mo-phong-trong-giao-duc-nhu"> Phát biểu nào là đúng trong các phát biểu sau? A. Có rất nhiều phần mềm mô phỏng trong giáo dục như Avogadro, Gplates, PhEt... B. Tất cả các phần mềm mô phỏng giáo dục đều miễn phí. C. Các phần mềm mô phỏng chỉ cung cấp tài nguyên miễn phí cho giáo viên. D. Tất cả các phần mềm mô phỏng đều hoạt động trực tuyến. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div></div></div><div class="fill_all mgbottom10px"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8829982124826340" crossorigin="anonymous"></script><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8829982124826340" data-ad-slot="3787865133" data-ad-format="auto" data-full-width-responsive="true"></ins><script> try { (adsbygoogle = window.adsbygoogle || []).push({}); } catch (e) { console.error('Google AdSense error: ', e); } </script></div><div class="nen_trang_full lz-relation"><div class="lz-relation--title">Bài tập Tin học Lớp 12 mới nhất</div><div id="filter_stage" class="lz-relation--content"><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2357294/phat-bieu-nao-sau-day-la-sai-80"> Phát biểu nào sau đây là sai? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2357286/trong-cac-cach-giai-thich-y-nghia-cua-thuat-ngu-wireless-access-point-cach-giai-thich-nao-dung"> Trong các cách giải thích ý nghĩa của thuật ngữ "Wireless Access Point", cách giải thích nào đúng? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2357278/cau-nao-sau-day-la-sai-khi-noi-ve-giao-thuc-tcp-1"> Câu nào sau đây là sai khi nói về giao thức TCP? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">3 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2357111/hub-va-switch-ket-noi-cac-may-tinh-trong-mang-cuc-bo-hay-mang-intenet-mang-dien-rong-mang-toan-cau"> Hub và Switch kết nối các máy tính trong mạng cục bộ hay mạng intenet mạng diện rộng mạng toàn cầu <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">2 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2357099/dieu-nao-sau-day-khong-dung-khi-noi-ve-the-danh-dau-html"> Điều nào sau đây không dùng khi nói về thẻ đánh dấu HTML <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">3 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2357096/cau-nao-sau-day-la-sai-khi-noi-ve-giao-thuc-tcp"> Câu nào sau đây là sai khi nói về giao thức TCP? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">2 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2342311/hien-nay-vo-so-phat-trien-manh-me-cua-ai-cac-san-pham-robot-cong-nghiep-la-mot-cong-cu-khong-the-thieu-trong-cac-cong-ty-nha-may"> Hiện nay vỏ sọ phát triển mạnh mẽ của AI. Các sản phẩm robot công nghiệp là một công cụ không thể thiếu trong các công ty, nhà máy, xí nghiệp. Chúng đóng vai trò quan trọng trong sản xuất, nâng cao chất lượng sản phẩm, góp phần giảm chi phí sản xuất <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2339604/trang-web-da-xuat-ban-cong-bo-co-the-gioi-han-nguoi-xem-duoc-khong-neu-co-the-hay-chi-ro-cac"> Trang web đã xuất bản (công bố), có thể giới hạn người xem được không? Nếu có thể, hãy chỉ rõ các thao tác thực hiện. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2339603/trang-web-dang-soan-thao-chua-xuat-ban-co-the-chia-se-no-cho-mot-nhom-nguoi-cung-tham-gia-soan"> Trang web đang soạn thảo, chưa xuất bản, có thể chia sẻ nó cho một nhóm người cùng tham gia soạn thảo hoặc công khai cho tất cả cùng xem được không? Nếu có thể, hãy chỉ rõ các thao tác thực hiện. <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/edu/exercise/2339602/kieu-phong-chu-mac-dinh-trong-moi-khoi-noi-dung-la-kieu-nhu-the-nao"> Kiểu phông chữ mặc định trong mỗi khối nội dung là kiểu như thế nào? <span>(Tin học - Lớp 12)</span> </a></h4><div class="lz-relation--ans"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/message.svg"/><div class="lz-relation--number">1 trả lời</div></div></div></div><div class="fill_all"><a style="text-align: center;" class="home-loadmore" href="javascript:void(0);" id="load_more"> <img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/uploads/new_layout/images/loadmore.svg" /> Xem thêm </a></div></div><div class="nen_trang_full lz-relation"><div class="lz-relation--title">Trắc nghiệm Tin học Lớp 12 mới nhất</div><div id="filter_stage" class="lz-relation--content"><div class="lz-relation--item"><img src="https://lazi.vn/system/cms/themes/mytheme/new_layout/images/relation-item.svg"/><h4 style="flex: 1;"><a class="lz-relation--text" href="/quiz/d/1356804/cho-biet-doan-soan-thao-van-ban-html-5-sau-bi-loi-cu-phap-gi-lt-doctype-html-gt-lt-html-gt-lt-head-gt">Cho biết đoạn soạn thảo văn bản HTML 5 sau bị lỗi cú pháp gì? <!DOCTYPE html><html><head><meta charset = “utf-8”></meta><title>Ngôn ngữ đánh dấu siêu văn bản

Chủ đề F

Hôm nay bạn thế nào? Hãy nhấp vào một lựa chọn, nếu may mắn bạn sẽ được tặng 50.000 xu từ Lazi

Vui Buồn Bình thường

Học ngoại ngữ với Flashcard

×
Trợ lý ảo Trợ lý ảo
×
Đấu trường tri thức | Lazi Quiz Challenge +500k