W3Schools.com
TRANG WEB NHÀ PHÁT TRIỂN WEB LỚN NHẤT THẾ GIỚI
HƯỚNG DẪN THAM KHẢO
Hướng dẫn Tài liệu tham khảo
×

CSS

Ngôn ngữ để tạo kiểu cho trang web

TÌM HIỂU CSS CSS THAM KHẢO

body {
    background-color: #d0e4fe;
}
h1 {
    color: orange;
    text-align: center;
}
p {
    font-family: "Times New Roman";
    font-size: 20px;
}
Hãy thử nó

JS

Ngôn ngữ lập trình trang web

TÌM HIỂU JS JS THAM KHẢO

// Click the button to change the color of this paragraph

function myFunction() {
    var x;
    x = document.getElementById("demo");
    x.style.fontSize = "25px";
    x.style.color = "red";
}
Hãy thử nó