Blog Details

1_mF_FyiaMp-DkWCxofsVibw.jpeg

What is HTML? What does it do? What is its significance for the web world? What is CSS? Does it have a link to HTML? We will examine the answers to these together shortly.


The terminology of HTML (Hypertext Markup Language) is the standard text markup language. For HTML, we can say that it is the basic building block of the web world. We can compare HTML to the skeletal structure of humans. Just as skin and organs do not make sense and integrity without a skeleton, CSS without HTML means no meaning and integrity.

If we examine its internal structure; HTML consists of two basic structures with the tag "<head>" and "<body>".

The Head structure is the structure that creates the "id" of our website, that is, the identity of the internet servers (servers) to identify our site. This is the section where we specify the general information of our site and the resources we will use in our site. If we give an example of the basic head structure:

<head>

<title></title>

</head>

The body structure is the structure that makes up the body of our website. “What will our site be like with hands and feet with? What kind of spine will it stand on? ” is the part that answers the questions. Internet servers, after reading our identity and identifying our site, begin to read the body structure of our site. If we examine the basic body structure:

<body>

</body>

The terminology of CSS (Cascading Style Sheets) is cascading style templates. It is the style template that we start to dress our website after we introduce our website to our internet servers on the head and body structures with HTML. It is a tag block where we can configure the internal space, outer space, color, background color of the structures we create with HTML. It can be edited by creating a tag block in HTML or by opening a file with the extension ".css" externally. Of course, if we are going to have a CSS file that we edit externally, we must add our file to our source files section in the header part of our HTML so that it can be used in our HTML file! If we define the css structure that we can use as a tag block in HTML:

<style type="text/css">

</style>

If we summarize our article; We can say that HTML and CSS are the inseparable basic duo of the web environment. CSS without HTML, and plain HTML without CSS means nothing by itself. Web servers, when we make a request to them, first identify our site from the head part of the HTML structure of our website, that is, they recognize us. Then it roughly defines the rest of our body. Finally, it reads the detailed structure of our clothes and our bodies.

In our next article, we will review basic HTML tags, see you for now…

Share:

0_bCLw04A4VSJf6bpA.jpg

BASIC BODY TAGS
Hello everyone! Where were we? Yes that's true! We talked about basic HTML tags in our previous article. In this article, we will go into a little more detail and consider the body part of our HTML skeleton. So what is the body? What are the basic body tags (tags)? Let's take a look at the answers to these questions in our article today.


The body is the HTML code block that contains the basic tags of a web page such as header, paragraph, image, in which we create the content part of our web address. This is the part where we will define the general content structure of our site. Then what are we waiting for? Let's get started with our content design.

First of all, WELCOME to our site! Let's start with the title. We will use the HTML header code blog structure for the header. Header structure consists of 6 basic dimensions. These dimensions are respectively; h1, h2, h3, h4, h5, h6. We write our title between the <h1></h1> tags.

 

Share:

1_3ZIey8xaOw5dg0nZTjkL3Q.png

Hello everyone! We are together again after a very long time. In our previous article, we talked about Basic Body Tags. In this issue, we will create a basic style.css file where we will style our basic body tags.

In this article, we will explore the concept of CSS. As we mentioned in our first article, the terminology of CSS (Cascading Style Sheets) is not a coding language, but cascading style templates. If you wish, let's start our article by creating our CSS file, which is our template file, which we have shaped in order for our basic HTML tags to have a more aesthetic appearance.

Share:

Blog

For those who are interested in software.