Hi,
It is quite interesting to note that several websites could very well have the same HTML code but their styling or CSS is what would make them different! Talking about CSS in particular, graphic designer displays their creativity through it. Not only does it give the web designer control over the appearance of the web pages but also aids in creating a visual hierarchy through parameters like shape, color, space, and size.
Refer to this code:
<!doctype html>
<html>
<head>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<h1>Welcome to InterviewBit!</h1>
<h2> Learning CSS!</h2>
<p> Hello World!</p>
</body>
</html>
Refer this article to know more