These are Titles a web designer can hold.

Been doing a research about positions web designers hold in agencies or independently. I figured out these A Web designer can hold a large range of titles and job positions due to their experience in almost all fields of design. Web Designer Front End Developer UI Designer UX Designer UX Lead Interaction Designer Art Director … Continue reading These are Titles a web designer can hold.

How can you create a website like 4chan by yourself?

I know I can. And if I can do it, you could do so too. But you will have quite a few things to learn. For starters, learn about HTML, CSS and JavaScript and learn about some practical front-end frameworks like knockout.js or bootstrap. Next, you need something to store the user accounts and user … Continue reading How can you create a website like 4chan by yourself?

HTML Forms

  /*<form action="" method="" name="frmAdmission"> <fieldset><legend><strong>Personal Details</strong></legend><label for="FName">First Name</label> <input id="fname" name="fName" type="text" /> <label for="LName">Last Name</label> <input id="Lname" name="LName" type="text" /> <label for="Email">Your Email</label> <input id="email" name="Email" type="email" /> <label for="Dbirth">Date of birth</label> <input id="Dbirth" name="Dbirth" type="date" /> <label for="gender"><strong>Gender</strong></label> <input id="rdgender" name="rdgender" type="radio" value="male" />Male <input id="rdgender" name="rdgender" type="radio" value="female" />Female <h2>Select the … Continue reading HTML Forms

Have a div which needs to be auto adjusted according to the content in it. How can I do this? Right now my content is coming out of the

just write "min-height: XXX;" And "overflow: hidden;" & you will be out of this problem Like this min-height: 100px; overflow: hidden;     if you haven't gotten the answer yet, your "float:left;" is messing up what you want. In your HTML create a container below your closing tags that have floating applied. For this container, … Continue reading Have a div which needs to be auto adjusted according to the content in it. How can I do this? Right now my content is coming out of the

Java script Examples

What can JavaScript do? JavaScript can change HTML content JavaScript can change HTML attributes JavaScript can change CSS style JavaScript can hide HTML elements JavaScript can show hidden HTML elements Examples explained Where to Insert JavaScript JavaScript in <head> JavaScript in <body> JavaScript in an external file JavaScript in an external url JavaScript in an … Continue reading Java script Examples

HTML Tags Ordered Alphabetically

Some of the tags are new in HTML5. Tag Description <!--...--> Defines a comment <!DOCTYPE> Defines the document type <a> Defines a hyperlink <abbr> Defines an abbreviation or an acronym <acronym> Not supported in HTML5. Use <abbr> instead. Defines an acronym <address> Defines contact information for the author/owner of a document <applet> Not supported in … Continue reading HTML Tags Ordered Alphabetically

How do I get my css style sheet to connect with my index.html using Sublime Text?

No worries, we've all been there, done that. 🙂 First of all the line that connects your index.html to your css file should look something like this and should go in between the tags.        "stylesheet" type="text/css" href="styling.css">   Now, as a general rule, you should put the css file into a separate … Continue reading How do I get my css style sheet to connect with my index.html using Sublime Text?