What Is Css Language And Examples Of Its Use

Tanggal : 13 Feb 2023, Category : CSS, Create By : admin

CSS (Cascading Style Sheets) is a style sheet language used for describing the look and formatting of a document written in HTML or XML. It is used to control the presentation of web pages and user interfaces, including layout, colors, and fonts. CSS provides a way to separate the presentation of a document from its content, making it easier to maintain and update the style of a website or application.

Here's an example of how CSS is used:

<html>
<head>
<style>
h1 {
color: blue;
font-size: 24px;
}
p {
color: green;
font-size: 16px;
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
 

In this example, the CSS code defines the styles for h1 and p elements. The h1 element will be displayed in blue with a font size of 24 pixels, while the p element will be displayed in green with a font size of 16 pixels.


Keyword:
  • What Is Css Language And Examples Of Its Use

Artikel Lain

Pengertian Sql Dan Jenis Perintah Sql

Date : 13 Sep 2018, Category : Database, Create By : admin

Hai brow, bagi kalian yang sudah lama berkecimpung di dunia pemprograman website pasti tidak asing dengan SQL, tetapi jika kalian baru mau masuk kedalam dunia pemprograman anda harus memahami apa .....

Html Paragraphs And How To Use Them

Date : 15 Feb 2023, Category : HTML, Create By : admin

HTML paragraphs are used to display blocks of text on a web page. Here's how to use them: To create a paragraph, use the <p> tag, like this:  <p>This is a paragraph .....

Setting Network Centos 7

Date : 01 Oct 2018, Category : Server, Create By : admin

Melanjutkan materi sebelumnya mengenai pengaturan firewall dan selinux, kali ini kami akan membahas mengenai cara setting network pada centos 7, pengaturan network ini sangat di butuhkan pada awal setelah anda .....