Jump to content
xisto Community
veerumits

Question Related To Website need Web page solution

Recommended Posts

I have some question in mind that need solution so please 1) What is benefit of using header and footer tag in our web page ?2) How we can registered our website on any search engine?3) Did I use animated image without flash in website.? 4) What is the correct way to display web page on center in any browser.? if we use css style ?I have little idea off all question answer but i need specific help so welcome.Thanks

Share this post


Link to post
Share on other sites

3- If you are asking if you can use animations without flash, you can use GIF images.4- You can use height:50%; left:50%; if i remember correctlyAs for the first one i think you can put title inside header or so, its all for better organising your pages. I dunno for second.

Share this post


Link to post
Share on other sites

Iam sorry iam not understanding what you are saying well, if by animation you meant button animation or animations like when you hover your mouse over something and it gives a sound or it moves i don't know anything other than flash that does that. Or if you are asking for a program to make GIF images, i suggest photoshop. You can also try an option in the free version of gamemaker but i don't recommend it. Simple go to google and search 'Free GIF programs' and search the list.
As for the CSS, i haven't done it in a while but try this:
Save a file style.css

p.centerpage{ top:50%;left:50%;}
Then write this as 1.html
<html><head><link rel="stylesheet" type="text/css" href="style.css" /></head><body><p class='centerpage'>Iam at center</p></body></html>
Make sure that 1.html and style.css are in the same directory (folder), again iam a bit rusty with CSS so if there is a mistake their i would appreciate it if someone pointed it out =), but i doubt there is one.
If you have anymore questions don't be shy to ask, also i see you are having some trouble in posting in english, so i'll rephrase it for you =)

first of all, you said that we use GIF image but what program can i use to make GIF images?second, in CSS style file we use height:50%; left:50%;Can you explain in an example, i don't get it much.
most apreciated.

I quoted it so that it wouldn't be considered as spam or repeating what you said :rolleyes:
Edited by khalilov (see edit history)

Share this post


Link to post
Share on other sites

I have some question in mind that need solution so please

 

1) What is benefit of using header and footer tag in our web page ?

The <header> and <footer> tags are part of the HTML5 specification which allows better organization and better semantics for web documents/applications. In HTML4/XHTML1, people comonly used <div id="header"> and <div id="footer"> to indicate headers and footers, the HTML5 specification eliminates this.

 

2) How we can registered our website on any search engine?

If your site is popular, search engines are going to see it and crawl it sooner or later. However, to submit your site to a search engine, use the following:

Live Search

Google

Yahoo! Search

3) Did I use animated image without flash in website.?

I don't know, did you? If you are asking about animated images in a website, they are embedding using the normal <img> tag. Without Flash, you can have Silverlight (a Microsoft product similar to Flash), animated GIFs (the common ones) or animated PNGs (a format only supported by Firefox, Opera and some Linux software).

 

4) What is the correct way to display web page on center in any browser.? if we use css style ?

html, body { margin: 0 auto; }

Share this post


Link to post
Share on other sites

I have some question in mind that need solution so please
1) What is benefit of using header and footer tag in our web page ?
2) How we can registered our website on any search engine?
3) Did I use animated image without flash in website.?
4) What is the correct way to display web page on center in any browser.? if we use css style ?

I have little idea off all question answer but i need specific help so welcome.

Thanks

1. To have your design well organized, generally speaking, you use the header to put your company logo or website title and usualy a search box and/or ads, and the footer is used to put some general stuff like your privacy policy and site map links, also you put here your copyright.

2. Usually search engines have a page where you can use to Add your URL on it, for example, visit the following page to Add your URL to Google.

3. Yes, for that you use Gif files.

4. Do you mean to center horizontally, vertically or both??? Also, It depends on the HTML version of your page, for example if you want to center your page horizontally with HTML 4 you can use the CENTER tag and if you use XHTML you can do it with a CSS style like the following:
html {   height:100%;   padding:0;   margin:0;}body {   margin:0 auto;   text-align:center;   height:100%;   padding:0;}
Best regards,
Edited by TavoxPeru (see edit history)

Share this post


Link to post
Share on other sites

1 - they just tell the browser what the data is for.2 - you have to go to a search engine, and submit your site to be indexed, for this to work well, use a meta tag, to tell the index-bot which pages to index.3 - yes, you can use .GIFs alternatively, you can use javascript for a slideshow4 - the best way is just using he <center> tag to position something horizontally, or you can create a table, like this:<table width="100%" height="100%" align="center" valign="center"> <tr><td width="100%" height="100%">Content you want centering</td></tr></table>Which will fill the whole page, and center anything in the single cellin CSS, you could set the objects margin left and margin-right to auto for horizontal, then set its top to 50%

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.