What you use as your browser doesn’t matter; it could be Chrome, Safari, or Firefox. They all have a single purpose, and that’s to interpret your files, such as your HTML files, CSS files, JavaScript files into a website that should be displayed. It’s important to remember that HTML is the foundation of all websites. Additionally, you won’t see websites created using just a CSS file or just a JavaScript file, but you can create websites using just an HTML file. To prove that, you can head to http://web-old.archive.org/ …
Class Selector
In this article I want to mention other things that you can use as selectors in order to make more specific changes to our web site by using CSS . We have been using tag selectors since we begin to use Internal and External CSS in our projects. For instance, We have 2 different images and we would like to have different background color. If we would use tag selector for style our images, What would have happened? Obviously, Both of our images would have same background color, wouldn’t it ? Therefore , We will use .class selector in order to avoid that problem. Okay than let’s see how it is doing. …
Now the problem really comes along when we start messing around with the layout using just HTML because as we have said in order to change our layout for our web site so that we can have text and images that exist side by side. At this point we have to use tables. And the problem with tables is that they are wordy. We have to write a lot of code in order to do something very simple which is displaying that image next to your h1 and your paragraphs, having it on the same horizontal level.
Moreover, If you started getting into more complex table layouts you had to embed tables within tables in order to get more columns and more rows and more flexible layout and the whole thing just became this horrible mess. So that is why we are going to have started using something called Cascading Style Sheets. After using CSS , Our websites will be more powerful for layout. As you can understand that we have used a couple of times layout. Because only purpose of CSS is that style our Mark-up Language in our web page. …
As we already have been repeated that HTML is the foundation of Websites and other components besides HTML are generally used to describe a web page’s appearance/presentation (CSS)or functionality/behaviour (JavaScript).On the other hand, as we already have been mentioned that HTML is the Mark-up Language to annotate text, images, hyperlinks and other contents for display in our Web browser. We should pay attention on this point again and again .That mark-up language includes special “elements” such as <head>…</head>, <body>…</body>, <footer>…</footer>,<h1> …</h1>,<br>, <a> and many others.
If you take look these elements more closer according to their syntax . You should have realized that there is a few things common compare to each other. An HTML elements are set off from other texts by “tags”, which consist of the element name surrounded by “<" and ">". These tags make requests to the browser asking it to structure and display our plaintext in way that we wanted it to be shown. The name of an element inside a tag is case insensitive. It can be written in uppercase, lowercase, or a mixture. For example, the tag can be written as <header>….</header>, <Header>….</Header>, or <hEAder>….</hEAder>, in any other way. Additively, the tag would be exist in 2 way. First way is that the tag consists opening tag and closing tag and the our plaintext is written between these 2 tag. …
First of all, we have already learnt how does internet work exactly from previous article. What is the next topic that is getting closer to web programming ? Obviously, you will understand from the title of this article that we will learn how do the web pages work ? The most important part before becoming a web developer, is that we should have a knowledge about different topics which are related to integrity of the main topic. This is why we will take look closer to the process of web pages work before coding something.
We all know that we need a browser to see web pages, don’t we? And this browser can be Chrome, Safari, Firefox etc . Those are all pieces of software that allow us to look up the IP address of our website and able us to receive data that it can render into beautiful websites that we can see. Now, the data that we receive from the server usually consists of three types of files(components). These are HTML, CSS, and JavaScript in order. And you would most likely have come across those types of files or those words before, because they are so common and there are so integral for how websites work. I attached the summary of the these 3 types of components and reflected them in the real world at the last table’s row in order to show what they are doing. After that, the following articles will dive us into more details of components, one by one. …
Well. Hi to everyone! Before starting to explain the topic I would like to introduce myself. I am Mustafa Batuhan Bayoglu and I am studying Computer Engineering as 3rd grade at Osmangazi University. Moreover, I would like to mentioned that I am always eager to share new knowledge to people as much as I can. Okay than let’s get start.
First of all , Where should we start ? Should we get begin with coding directly? or Should We Cover Fundamentals of Web Programming? Of course the second choice makes more sense than the first, isn’t it ? So , What are the fundamentals of Web Programming? To begin, we should wonder how does internet work? A lot of people are thinking that internet is like a cloud , something that is hanging around in the sky. …
About