Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Sohel Rana

Pages: [1]
1
Web based Developer Forum / How to create a Web page?
« on: April 25, 2011, 02:18:04 AM »
Hello, how are you? Now I will talk to you how to create a website. In my previous post I discussed about what is HTML and how to start with an example .Now I show how to create a web page.

Before you learn this I recommend you please visit http://www.w3schools.com/  and learn some basic type of tag.
Example :< b>, <small></small>, <big></big>, <strong></strong>,,,
<sup>,/sup>,<sub></sub>,<p></p>,
,
etc
This is very easy to learn. You can learn it from http://www.w3schools.com


After this I will show you how to insert a image into your web page. To insert a image into your web page you have to know <img /> tag
For this you write <img src=” ”/>.Write you image name between the quote (“”) and then extension
Like (.jpg/.jpeg/.gif/.png) .Here src means the source (direction) of image which you want to show your browser, then write the image name and extension.

 like(<ing src="imame_name.png"/>)

If you save your html file in same direction which is place at image, in this case the direction is not needed only write image name and then extension.
And finally save it and open it.And a attach a file you can download it,I think it is helpful for u


Have a good time

Best Regard
Sohel Rana
Dept. of CSE
ID:092-15-820

2
Web based Developer Forum / Lets go to learn HTML
« on: April 08, 2011, 02:34:19 AM »
HTML(Hyper Text Markup Language) is very much easy and understandable language.Before I start HTML ,I want to say which software is used to write HTML code.There are not need any software to write code of HTML at initially.Just notepad is enough !!!
Now I start step by step..
1.Open the notpad.
2.Then click the file menu of notepad .
3.Then  click the save as.
4.and save the file(choose any name) with html extension (like index.html).
5.Now you see a HTML file is created,where you save it .

Example:
Code: [Select]
<html>
    <body>
    Hello World
    </body>
</html>

6.After write this code save it.
7.Finally open the HTML file.

I think you enjoy it

Best Regard
Sohel Rana
Dept. of CSE
ID:092-15-820
01721137958
 

3
Web based Developer Forum / What is HTML
« on: April 04, 2011, 11:33:02 PM »
HTML( hyper text markup Language)is not a programming language, it is a markup language. A markup language is a set or group  of markup tags.HTML is use to describe the web page.HTML is normally consist pair of tag like(<> and </>).these are called opening tag and ending tag respectively.It also another kind of tag (</>).

Now we see how to start HTML .For example here I use two kind of Tag .please type it notepad and save it with the HTML extension then create a HTML file and finally open the file.

Code: [Select]
<html>
    <body>
        Hello
       <br/>
        World
    </body>
</html>

Hopefully  you enjoy it

Sohel Rana
Dept. of CSE
ID:092-15-820

Pages: [1]