10152120Website Development
Course Information
Description
This course introduces HTML, CSS, and essential web development techniques. Students will learn to create well-structured HTML documents and apply CSS styling to enhance the visual appearance of web pages. Through hands-on exercises, they will develop proficiency in building and styling web content, including text formatting, image integration, and form design. Emphasis is placed on debugging techniques and adherence to web accessibility standards to ensure the creation of accessible and standards-compliant websites. By the end of the course, students will have the skills to create functional and aesthetically pleasing static web pages while adhering to industry best practices.
Total Credits
3
Prior Learning Assessment
- Exam-College Developed Challenge Exam
Course Competencies
-
Create a structured HTML document using appropriate elements and attributesAssessment StrategiesCoded document submissionCriteriaIncludes DOCTYPE, html, head, and body tagsContains correctly nested elements with minimal syntax errorsUses a logical document structure, including headings and paragraphsDemonstrates consistent formatting and indentation
-
Evaluate web page accessibility and web page performanceAssessment StrategiesCoded document and reportCriteriaIdentifies accessibility issues according to WCAG guidelines (e.g., missing alt text, insufficient color contrast)Assesses performance with developer tools or web performance tools and identifies areas for improvementProposes specific changes to address at least two accessibility and two performance issues
-
Explain how the web works, including HTML, CSS, and JavaScript rolesAssessment StrategiesWritten explanation, quiz, or presentationCriteriaDefines the roles of HTML, CSS, and JavaScript in building web pagesDescribes how these components interact with the browser
-
Apply proper syntax and formatting to HTML codeAssessment StrategiesCoded document submissionCriteriaUses closing tags correctly, with no unclosed tags in the documentAdheres to consistent indentation per course coding standardsIncludes appropriate comments to explain the code structureAvoids inline CSS in HTML
-
Organize web content with semantic HTMLAssessment StrategiesCoded document submissionCriteriaUses semantic HTML5 elements (e.g., header, nav, main, footer, section, article) appropriately to organize contentStructure lists using ul, ol, and dl with accurate nestingUses table elements with appropriate structure for accessibilityIncludes correctly structured forms using form elements
-
Develop a web form with various input elements and basic validationAssessment StrategiesCoded form submissionCriteriaIncludes various types of input fields (e.g., text, checkbox, radio, dropdown)Labels all inputs clearly and associates labels with inputs for accessibilityImplements basic HTML validation (e.g., required, pattern, min, max)Uses regular expressions where needed to validate form dataDemonstrates form functionality by submitting the form data to a server
-
Implement HTML links and images with appropriate attributesAssessment StrategiesCoded document submissionCriteriaInserts both absolute and relative links, with each link opening in the expected target (e.g., _blank for external links)Includes images with meaningful alternative text for accessibilityDemonstrates the use of an image as a link
-
Apply proper syntax, formatting, and selectors to CSS codeAssessment StrategiesCoded CSS submissionCriteriaDemonstrates correct CSS syntax (e.g., no missing semicolons, correct property-value pairs)Organizes CSS with consistent indentation and uses comments where necessaryUses both class and id selectors correctly, understanding specificity and use casesStyles links in various states using pseudo-classes (e.g., :hover, :active, :visited, :focus)Demonstrates application of specificity and inheritance, organizing CSS to avoid conflictsUses an external CSS stylesheet, linked in the HTML file
-
Layout and style webpage elements using the CSS box model, positioning, and floatsAssessment StrategiesCoded layout projectCriteriaAdjusts margin, padding, border, and width properties to control layout and spacing effectivelyApplies the box-sizing property (e.g., border-box) to manage element sizingUses positioning techniques (e.g., static, relative, absolute, fixed, sticky) to accurately place elements within the layoutCenters block and inline-level elements using box model properties or alignment properties like margin and text-alignImplements float and clear properties to position elements side-by-side or wrap text around images
-
Implement responsive web layouts using media queriesAssessment StrategiesCoded responsive design projectCriteriaUses media queries to adapt the layout for at least two screen sizes (e.g., desktop and mobile)Demonstrates responsive adjustments, such as resizing images, adjusting text size, and changing layout structureTests and verifies responsiveness across devices using browser developer toolsEnsures content readability and accessibility on all tested screen sizes
-
Debug and validate HTML and CSS codeAssessment StrategiesDebugging and validation report with coded documentCriteriaValidates HTML and CSS code using a recognized validation tool (e.g., W3C Validator)Identifies and corrects errors found through validation or testingRemoves unnecessary or redundant code, ensuring clean HTML and CSS filesDemonstrates debugging techniques (e.g., inspecting elements, using the console for errors)Resolves specificity conflicts in CSS, understanding the CSS cascade and inheritance
-
Style and format text using CSS propertiesAssessment StrategiesText styling projectCriteriaSelects and applies web-safe fonts or imports external fonts (e.g., Google Fonts)Uses font-size, font-weight, and font-style to control text appearance (size, boldness, italics)Adjusts line-height and letter-spacing for readabilityUses text-align to control alignment based on design requirementsApplies color to text using various color formats (e.g., hex codes, RGB, color names) with sufficient contrast for accessibilityStyles text with text-decoration (e.g., underline) and text-transform (e.g., uppercase, lowercase)Enhances text styling with pseudo-elements (e.g., ::before, ::after) for decorative purposes