Used for hiring
Front-end Developers
Wordpress Developers
UI/UX Developers
Skills required
Adept at CSS and JavaScript
Skilled at Photoshop
Knowledge of WordPress
HTML Developer Assessment
For assessing a candidate on HTML, he/she should also be well-versed in CSS, JavaScript, and AngularJS. A good understanding of WordPress is also required.
You can check the following skills while hiring for an HTML developer
- Knowledge of front-end technologies, such as CSS, JavaScript, HTML, and JQuery, is required.
- Ability to handle technical aspects of content management systems and produce a responsive design.
- Experience in Rest/SOAP protocols
- Ability to build a user interface for mobile and web applications.
How this test helps with hiring HTML candidates
Steps to assess HTML Developers
Create a test
Add questions to assess AngularJS skills
Send invites to candidates
Evaluate the report
Common types of assessments used by our top customers
HTML
CSS and Javascript
Sample questions
In CSS, which of the following properties is used to set the style of an element’s four borders to solid, dashed, dotted, double, or groove?
- border-layout
- border-decoration
- border-weight
- border-styleCorrect Answer
Which of these fonts is applied to text in the following CSS code:
n
n”}” data-sheets-userformat=”{“2″:5057,”3”:{“1″:0},”9″:1,”10″:2,”11″:4,”12″:0,”15″:”arial,sans,sans-serif”}”> <style type=”text/css”>
.el1{font-family:Arial,sans-serif;}
.el1,.el2{font-family:Tahoma,sans-serif;}
.el1,.el2,.el3{font-family:Helvetica;}
</style>
<div class=”el1″>Text</div>
- Arial
- Tahoma
- HelveticaCorrect Answer
- Sans-serif
Which of these denotes the appearance of an element created with <ul class=”categories”> in the following CSS code:
.categories {
color: blue;
}
ul {
background-color: white;
color: black;
}
- The element will have a white background and a black text.
- The element will have a white background and a blue text.Correct Answer
- The element will have a white background and a blue text.
- The element will have a transparent background and a blue text.