Showing posts with label css. Show all posts
Showing posts with label css. Show all posts

Monday, 11 January 2016

How to create SEO friendly responsive web page using CSS

css.png
All the website are open from various screen sizes from a small mobile phone to large screen computer, so we required a webpage which adapt according to the various screen size and OS system like android phone, iPhone, Linux Ubuntu, Windows PC and Mac computers.
In my previous blog post, we discussed about How to create SEO friendly responsive web page in HTML5 . you can use css programming for the same. for making an responsive web page you required to have a separate css file or you can add some line of code to you html file. In this tutorial, we are focusing on link to external css file.
  1. <div class="w3-container w3-teal">
  2. <h1>CSS File Header</h1>
  3. </div>

  4. <img src="img&#95;car.png" alt="Car" style="width:100%">

  5. <div class="w3-container">
Here is not the end. To view the full Blog about How to create SEO friendly responsive web page using CSS visit Findnerd.
Also Explore Findnerd to view such more blogs on various Technologies such as iOS, Android, Java, C, C++, Javascript Blogs etc.

Monday, 17 August 2015

How to centralize div horizontally and vertically

Hi all,
Here are two method to center align a position of div.
  1. div{
  2. height: 200px;
  3. width: 200px;
  4. background: #ccc;
  5. top:0;
  6. bottom: 0;
  7. left:0;
  8. right: 0;
  9. margin: auto;
  10. position: absolute;




 - Read the full Blog at: Howto centralize div horizontally and vertically

FindNerd allows you to post Html questions and answers. In this forum html designers and developers can collaborate with each other to resolve a specific html issue, as all the community members here are highly experienced and can provide answers to any html issue in a short span of time.

Apart from this, If you have any PHP language issues, you can post at PHP developer forum and get instantly resolved it from highly experienced FindNerd community members.


Friday, 7 August 2015

How to Create Custom Jquery Tabs

Hello Reader's,

In this article I will guide you how to create custom responsive tabs without use of any Jquery plugin.
This will surely make your web page faster because its not an plugin. Its an simple custom Jquery HTML & css.

Copy and paste the code & see result
Here is the HTML
  1. <div class="wrapper">
  2. <div class="tabs">
  3. <ul id="tabs">
  4. <li><a href="#" data-tab="tab1">Tab 1</a></li>
  5. <li><a href="#" data-tab="tab2">Tab 2</a></li>
  6. <li><a href="#" data-tab="tab3">Tab 3</a></li>
  7. <li><a href="#" data-tab="tab4">Tab 4</a></li>
  8. </ul>
  9. </div>


-Read the full set of code /blog at:  How to Create Custom Jquery Tabs

FindNerd allows you to post Html Questions and Answers. In this forum html designers and developers can collaborate with each other to resolve a specific html issue, as all the community members here are highly experienced and can provide answers to any html issue in a short span of time.

Apart from this, If you have any PHP language issues, you can post at PHP Developer Forum and get instantly resolved it from highly experienced FindNerd community members.



Wednesday, 5 August 2015

How to Avoid HTML Mistakes

Hello Reader's

Here is the article which will help you to know, How to Avoid HTML Mistakes

In this article I will guide you how to avoid minor mistakes when create an HTML Page.

 1) Don't use block elements within Inline elements. **Wrong Approch**:- <a href="#"><h1>This approach is wrong because a tag is a inline element and h1 is a block element. So we can't use inline element before the block element.</h1></a> **Right Approch**:- <h1><a href="#">This approach is right because h1 is a block element & a tag is a inline element. So we can use inline element after the block element.</a></h1>

 2) Always use the attribute for tags. Reason of using attribute is, your image path is wrong or have bad network connection then the alt="star" text will be render on the screen.

How to Avoid HTML Mistakes -


Read the Blog at: How to Avoid HTML Mistakes FindNerd allows you to post Html queries at Html help forum. In this forum html designers and developers can collaborate with each other to resolve a specific html issue, as all the community members here are highly experienced and can provide answers to any html issue in a short span of time.

Apart from this, If you have any PHP language issues, you can post at PHP Questions and Answers and get instantly resolved it from highly experienced FindNerd community members.

Tuesday, 28 July 2015

How to make custom attribute in Html5 ?

Hi all, You can make your own custom attribute using data-. It allows possessive exchanged information between HTML and its DOM representation. It can work with javascript also, every browser will let you fetch and modify data- attributes using the getAttribute and setAttribute methods.

Example with css -  

css :-
 
section [data-index='123'] {
color:red;
width:200px;
}
 
 
 
How to make custom attribute in Html5 ?
-For full set of codes /steps, visit the complete Blog: How to make custom attribute in Html5 ?

FindNerd is the right place to resolve HTML problems. Here you can post Html Help Forum.
Apart from this, If you have any PHP language query, you can post at PHP questions and answers and get instantly resolved it from highly experienced FindNerd community members.