Skip to main content

Posts

Showing posts with the label Web

Web programming part 2

Hello guys, I am back with another post on web programming. In the last post you guys had learnt how to create a simple HTML document. As i told you there are many tags that you might have to remember. In this Post i will be creating a small Login form using only HTML. By using only HTML i mean No styling will be given to the document. The purpose of this code is to demonstrate you tags like <form> and <label> you will also learn how to make a button in HTML. The code goes like this: < form  action ="/action_page.php" >      < label > < b > Username < /b > < /label >      < input  type ="text"  placeholder ="Enter Username" >      < label > < b > Password < /b > < /label >      < input  type ="password"  placeholder ="Enter Password" >      < button  type ="submit" ...

Introduction to Web programming part 1

Welcome guys! This post is on Beginning Website development.  So lets get started First thing is HTML HTML stands for Hyper Text Markup Language. It is a simple language used to develop websites. There are a number of tags in HTML. It is not possible to remember all the tags though,but you have to know some of them since they are used in each and every website. Html is just a collection of tags which specify some action. example:- <img> is a tag which is used to specify that some image has to be added. Let us start with a simple code to develop some website. Every HTML based website must contain these tags. <!Doctype html> <html> ............ ........... </html> Every tag has an equivalent closing tag. HTML is called as a markup langauge because it allows the user to structure the tags in a specific format. example for an HTML document < !DOCTYPE  html > < html > < head > < title > Page Title ...

Introduction to Web

Hello everybody,I would like to begin this topic by giving you some idea about "what is web development?" First of all,Let me tell you in simple words that "Web" and "Internet" are not the same.   Internet is the collection of computer's connected together in a network. It connects millions of computers together globally, forming a network in which any computer can communicate with any other computer as long as they are both connected to the  Internet . The World Wide Web (abbreviated  WWW  or the Web)  is  an information space where documents and other web resources are identified by Uniform Resource Locators (URLs), interlinked by hypertext links, and can be accessed via the Internet. Its very easy to learn website development and its very simple. Lets talk about the technologies used to develop a website and also lets get started with a few. There are a lot of languages to develop websites.In order to master all these languages what yo...