We use cookies
This site uses cookies from cmlabs to deliver and enhance the quality of its services and to analyze traffic..
SEO SERVICES
Audit your website on the technical side, planning and developing website strategies and projections.
WRITING SERVICES
SEO-friendly content will help you boost the website credibility, drive more organic traffic, and improve your business's online presence.
Get more relevant exposure from bloggers and online publishers to increase your brand mentions on search engine results pages.
Successful political campaigns begin with an effective SEO strategy for an optimized result in search engines
SEOlution
References
SEO Tools for Webmasters
SEO Tools for Writers
SEO Tools
FIND THE SUITABLE PARTNERSHIP FOR YOUR COMPANY
Check out which cmlabs partnership programme suits your company
WHITE LABEL SEO
for CorporateYour company is granted exclusive partnership rights to provide SEO services to our important clients, and we will provide a dedicated backend team to support your efforts.
AFFILIATE PROGRAM
for BizdevA new affiliate program is being introduced for skilled marketers and individuals with strong networks, offering commissions of up to 7% for generating profits independently.
DIGITAL AGENCY
for Marketing Partnerscmlabs is an essential partner for digital agencies, providing a unique selling proposition in Search Engine Optimization (SEO).
BACKLINK PARTNERSHIP
for Media / BloggerWe has a vast database of bloggers and media outlets across Indonesia, categorized by region and media type, giving our clients an edge in managing their media and SEO activities.
OFFICIAL TRAINING
We provide ongoing professional development and support to SEO professionals to ensure they are equipped to meet market demands.
JOIN AS CONTRIBUTOR
for Content WriterGreat opportunity for SEO Writers around the world. T&C applied!
ACADEMIC PARTNERSHIP
Through partnerships with universities in Indonesia, cmlabs has helped align academic curricula with industry demands.
Partnership
Sector & Industries
Tell us your SEO needs, our marketing team will help you find the best solution
As an alternative, you can schedule a conference call with our team
Schedule a Meeting?Contact
Traffic Projection Calculator: Help You Develop Measurable SEO Plans!
CheckYour Words, Our Expert Touch! ✎ Check our new services, cmlabs Expert Writing
Checkcmlabs has recently unveiled 7 cutting-edge tools!
Checkcmlabs Released The 30th Tool: Meta Generator
CheckThere is currently no notification...
Notification
In accordance with the established principles of marketing discourse, I would like to inquire as to your perspective on the impact of SEO marketing strategies in facilitating the expansion of enterprises in relation to your virtual existence.
By continuing, you agree PT cmlabs Indonesia Digital uses your answers, account & system info to improve services, per our Privacy Policy
Survey
We use cookies
This site uses cookies from cmlabs to deliver and enhance the quality of its services and to analyze traffic..
Last updated: Aug 25, 2023
CSS stands for cascading style sheet and is a language used to manage the visual appearance (front-end) of a website. CSS was developed in 1996 by the World Wide Web Consortium (W3C) to set HTML page formatting.
CSS allows you to build websites that look good and provide a good user experience. This is because CSS can be used to design HTML documents or other markup languages, such as setting font styles, sizes, colors, spacing, creating buttons, and other styles.
After you know what is CSS, you have to understand the function. Basically, the CSS function is to make the appearance of HTML documents or markup languages more attractive and varied. There are also other CSS functions you should know:
One of the CSS function is to provide a responsive display for all screen sizes, both desktop, and mobile. CSS has properties such as max-width and min-width to adjust the display according to the screen size. That way, your website can provide a better user experience.
CSS is also able to shorten loading time. With CSS you can minimize the amount of code because CSS styles can be applied to multiple web pages at once. It causes the file size to be smaller and web pages to load faster.
Using CSS makes it easy for you to manage your code. For example, you want to change the type of font used on a website. You don't need to change each font, but you can edit the CSS code regarding the font type and the changes will be applied throughout the HTML page.
Based on how it is written, CSS is divided into three types, namely internal, external, and inline CSS. Check out the discussion of CSS types below:
Internal CSS is CSS code that is written in the <head> section of an HTML document. You can add CSS code by writing a <style> tag in the HTML header. However, internal CSS is less efficient because it can slow down website performance and make the file size bigger.
External CSS is writing separate CSS code from HTML documents. Usually, the CSS code will be stored in a .css extension file, then it can be imported via the <link> tag found in the <head> section. In the <link> tag, you only need to write the rel="stylesheet" attribute and the href attribute which contains the directory where the .css extension file is stored.
External CSS is widely used in website development because it can speed up loading times. In addition, external CSS also makes the program code neater and the file size smaller.
Inline CSS is CSS code as an attribute on HTML elements. You can add different styles based on your needs for each element. However, using inline CSS can be less efficient because styles can only be used on one element. You will need to add separate CSS styles for the other elements.
Here are some ways to apply CSS syntax in HTML documents. Take a look at the source code below:
You can add style tags and CSS properties in the <head> section of an HTML document. In the following code, there is an internal CSS to style the paragraph and H1.
<!DOCTYPE html>
<html>
<head>
<title>Panduan CSS</title>
<style>
body {
background-color:lightblue;
}
h1 {
color:white;
text-align:center;
}
p {
font-family:Arial;
font-size:30px;
}
</style>
</head>
<body>
<h1>Panduan CSS</h1>
<p>Belajar HTML & CSS</p>
</body>
</html>
Internal CSS Output
To use external CSS you must add a reference to the external CSS file inside the <link> tag in the <head> section of the HTML document. The way to import an external CSS file is to write the href="CSS file directory" attribute in the <link> tag. Take a look at the following sample HTML code and mystyle.css file.
HTML Code
<!DOCTYPE html>
<html>
<head>
<title>Panduan CSS</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<h1>Panduan CSS</h1>
<p>Belajar HTML & CSS<p>
</body>
</html>
CSS code saved on the mystyle.css file
<style>
body {
background-color:lightgreen;
}
h1 {
color:blue;
text-align:center;
}
p {
font-family:Calibri;
font-size:20px;
}
</style>
External CSS Output
In the inline CSS, you can add style attributes and CSS properties in HTML attributes. Take a look at the following code to style paragraphs and H1 with inline CSS.
<!DOCTYPE html>
<html>
<head>
<title>Panduan CSS</title>
</head>
<body>
<h1 style=color:orange;text-align:center;>Panduan CSS</h1>
<p style=font-family:TimesNewRoman;font-size:40px;>Belajar HTML & CSS</p>
</body>
</html>
Inline CSS Output
WDYT, you like my article?
Tell us your SEO needs, our marketing team will help you find the best solution
As an alternative, you can schedule a conference call with our team
Schedule a Meeting?Traffic Projection Calculator: Help You Develop Measurable SEO Plans!
CheckYour Words, Our Expert Touch! ✎ Check our new services, cmlabs Expert Writing
Checkcmlabs has recently unveiled 7 cutting-edge tools!
Checkcmlabs Released The 30th Tool: Meta Generator
CheckThere is currently no notification...
In accordance with the established principles of marketing discourse, I would like to inquire as to your perspective on the impact of SEO marketing strategies in facilitating the expansion of enterprises in relation to your virtual existence.
By continuing, you agree PT cmlabs Indonesia Digital uses your answers, account & system info to improve services, per our Privacy Policy
In accordance with the established principles of marketing discourse, I would like to inquire as to your perspective on the impact of SEO marketing strategies in facilitating the expansion of enterprises in relation to your virtual existence.
By continuing, you agree PT cmlabs Indonesia Digital uses your answers, account & system info to improve services, per our Privacy Policy
Tools for SEO Specialist, Writers & Web Developers
Exclusively for cmlabs Member
Unlimited crawl on SEO Tools
Unlimited crawl on SEO Tools
Full access to SEO guideline and terms
Learn more about SEO at cmlabs resources
cmlabs is strive to help enterprises to step up their SEO activities. We called it end-to-end SEO through the product, tools and services (consist of SEO Consultant, SEO Content Writing, and Media Buying). Aside of that, cmlabs still have SEO tools that is designed for webmaster and writer to fulfill their needs. Here are several free access SEO Tools for you!
Level Up Your SEO
cmlabs Jakarta HQ Jl. Pluit Kencana Raya No.63, Pluit, Penjaringan, Jakarta Utara, DKI Jakarta, 14450, Indonesia
(+62) 21-666-04470cmlabs Jakarta Office 2 Jl. Tanah Abang I No.11, Petojo Selatan, Gambir, Jakarta Pusat, DKI Jakarta 10160, Indonesia
cmlabs Malang Jl. Seruni No.9, Lowokwaru, Kota Malang, Jawa Timur, 65141, Indonesia
(+62) 341-475-665These strategic alliances allow us to offer our clients a wider range of SEO innovative solutions and exceptional service.
Psst! Hey there, SEO Stats and Tools SEO company! If you've ever planned of conquering the Indonesian market, you've come to the right place!
These strategic alliances allow us to offer our clients a wider range of SEO innovative solutions and exceptional service.
Psst! Hey there, SEO Stats and Tools SEO company! If you've ever planned of conquering the Indonesian market, you've come to the right place!