Posts

Form html

Image
HTML Forms are required when you want to collect some data from the site visitor. For example, during user registration, you would like to collect information such as name, email address, credit card, etc. Adding a simple search box to your website or you need to create a more complicated application. Html gives you the platform to collect the data from your users. The HTML <form> tag is used to create an HTML form and it has following syntax − <form action = "Script URL" method = "GET|POST"> form elements like input, textarea etc. </form>      Form Controls There are different types of form controls that you can use to collect data using HTML form − Text Input Controls Checkboxes Controls Radio Box Controls Select Box Controls File Select boxes Clickable Buttons Submit and Reset Button For example:- <head>     <title>table form</title></head>     <body>  ...

About CSS

Image
 What is CSS? CSS  stands for  C ascading  S tyle  S heets CSS describes  how HTML elements are to be displayed on screen, paper, or in other media CSS  saves a lot of work . It can control the layout of multiple web pages all at once External stylesheets are stored in  CSS files "Css allows you to create rules that specify how the content of an element should appear. For example, you can specify that the background of the page is mint-cream,all the paragraph appear in Gray using the Arial typeface and headings should be in a blue and  italic."      Css file:- where  p = Selector (which indicate the rule to applies.the same rule apply more than one element if you separate the element name with commas.) { color:gray;      font-family:arial;   } Declartions (Indicate how the element referred to in the selector should be styled. Declaration a...

The 5 Best WYSIWYG HTML Editors

Image
A WYSIWYG (pronounced "wiz-ee-wig") editor or program is one that allows a developer to see what the end result will look like while the interface or document is being created. WYSIWYG is an acronym for "what you see is what you get". An  HTML  WYSIWYG editor   conceals the markup and allows the Web page developer to think entirely in terms of how the content should appear. One of the trade-offs, however, is that an HTML WYSIWYG editor sometimes inserts the markup code it thinks is needed all on its own. Then, the developer has to know enough about the markup language to go back into the source code and clean it up. The first true WYSIWYG editor was a word processing program called Bravo. Invented by Charles Simonyi at the Xerox Palo Alto Research Center in the 1970s, it became the basis for Simonyi work at Microsoft and evolved into two other WYSIWYG applications called Word and Excel. Adobe Dreamweaver  (Windows/Mac, Paid) Adobe Dreamweaver is a...

UX vs UI

Defining UX and UI User experience design (UXD or UED) is the process of enhancing customer satisfaction and loyalty by improving the usability, ease of use, and pleasure provided in the interaction between the customer and the product. User Interface Design compliments UI, the look and feel, the presentation and interactivity of a product. this means everything that shows up on the screen: the images, text, diagrams, and widgets as well as their color, size, and positioning  Difference between these two design disciplines with the help of a relatable example. A majority of us are familiar with the foodpanda mobile application. Suppose that you placed an order for a juicy burger from your favorite food outlet but unfortunately, you were delivered a Chinese combo meal due to a technical glitch that switched the order. Would this be under the purview of UX or UI design? This would definitely be termed a User Experience (UX) failure because you as a user did not rece...

About HTML

Image
What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML elements are the building blocks of HTML pages HTML elements are represented by tags HTML tags label pieces of content such as "heading", "paragraph", "table", and so on Browsers do not display the HTML tags but use them to render the content of the page             Small websites are often written just using HTML and CSS. Larger websites — in particular, those that are updated regularly   and use a content management system (CMS), blogging tools, or    e-commerce software — often make use of more complex   technologies on the web server, but these technologies are actually used to produce HTML. Now there is a simple syntax for HTML < html > < head > < title > Page Title < /title > < /head > < bo...

About Web-design

Image
Web design   Web design means planning, creation, and updating of websites. Website design also involves information architecture, website structure, user interface, navigation ergonomics, website layout, colors, contrasts, fonts and imagery(photography) as well as icons design. Elements of Web Design Web design uses many of the same key visual elements as all types of design such as: Layout :   This is the way the graphics, ads, and text are arranged. In the web world, a key goal is to help the view find the information they seek at a glance. This includes maintaining the balance, consistency, and integrity of the design. Colour :  The choice of colors depends on the purpose and clientele; it could be simple black-and-white to multi-colored design, conveying the personality of a person or the brand of an organization, using web-safe colors. Graphics :  Graphics can include logos, photos, clip-art or icons, all of which enhance the web design. For ...