AI Skill Report Card

Creating Webflow Templates

B-72·Mar 12, 2026·Source: Extension-page
13 / 15
HTML
<!-- Hero Section with Navigation --> <div class="navbar"> <div class="nav-brand">LuxeLocks</div> <nav class="nav-menu"> <a href="#services">Services</a> <a href="#shop">Shop</a> <a href="#about">About</a> <a href="#contact">Contact</a> </nav> </div> <!-- Product Grid --> <section class="product-grid"> <div class="filters"> <button class="filter-btn active">all</button> <button class="filter-btn">new arrivals</button> <button class="filter-btn">most popular</button> </div> <div class="products"> <div class="product-card"> <img src="product-image.jpg" alt="Hair Mousse"> <h3>Hair Mousse</h3> <p>A styling product that helps to add volume and hold to your hair.</p> <div class="price"> <span class="sale-price">$39.90 USD</span> <span class="original-price">$79.90 USD</span> </div> </div> </div> </section>
Recommendation
Replace the workflow checklist with a concrete step-by-step process showing actual template creation from start to finish
10 / 15

Template Development Process:

Progress:

  • Plan site structure and page hierarchy
  • Create component library (headers, cards, forms)
  • Build responsive grid systems
  • Implement product/content templates
  • Add interactive elements and animations
  • Set up CMS collections and dynamic content
  • Test responsive behavior across devices
  • Configure SEO and meta tags
  • Package template with documentation

Key Template Components:

  1. Navigation - Multi-level menus with mobile responsiveness
  2. Hero sections - Eye-catching headers with CTAs
  3. Product grids - Filterable, sortable item displays
  4. Forms - Contact, newsletter, checkout forms
  5. Footer - Links, social media, legal information
Recommendation
Provide complete input/output examples showing the full transformation from requirements to finished template code
12 / 20

Example 1: Product Card Component Input: Product data (name, description, price, image) Output:

HTML
<div class="product-card"> <div class="product-image"> <img src="organic-shampoo.jpg" alt="Organic Shampoo"> </div> <div class="product-info"> <h3>Organic Shampoo</h3> <p>A hair care product that helps to nourish and protect your hair.</p> <div class="pricing"> <span class="current-price">$29.90 USD</span> <span class="original-price">$79.90 USD</span> </div> <button class="add-to-cart">Add to Cart</button> </div> </div>

Example 2: FAQ Section Input: List of questions and answers Output:

HTML
<section class="faq-section"> <h2>Get the answers you need about our salon services.</h2> <div class="faq-list"> <div class="faq-item"> <button class="faq-question">What services do we offer?</button> <div class="faq-answer">...</div> </div> </div> </section>
Recommendation
Add specific Webflow CMS collection setup examples with actual field configurations and dynamic binding syntax

Design Standards:

  • Use consistent spacing (8px grid system)
  • Implement responsive breakpoints (mobile-first)
  • Follow accessibility guidelines (WCAG 2.1)
  • Optimize images (WebP format, proper sizing)

Webflow Specifics:

  • Use Webflow's class naming conventions
  • Create reusable symbols for common elements
  • Set up CMS collections for dynamic content
  • Configure responsive settings for all breakpoints

E-commerce Features:

  • Product filtering and search functionality
  • Shopping cart and checkout integration
  • Price display with sale/original pricing
  • Newsletter signup with form validation

Performance:

  • Minimize custom code and dependencies
  • Use Webflow's built-in optimization features
  • Implement lazy loading for images
  • Clean up unused styles and classes

Template Structure Issues:

  • Don't create overly complex nested structures
  • Avoid inline styles that can't be globally updated
  • Don't skip mobile-first responsive design
  • Avoid using absolute positioning excessively

Webflow-Specific Mistakes:

  • Don't use too many custom breakpoints
  • Avoid creating one-off classes for similar elements
  • Don't ignore Webflow's SEO settings
  • Avoid complex interactions that break on mobile

Content Management:

  • Don't hardcode content that should be dynamic
  • Avoid creating rigid layouts that can't adapt to different content lengths
  • Don't forget to set up proper CMS field types
  • Avoid missing fallback content for empty fields

Performance Issues:

  • Don't use oversized images without optimization
  • Avoid excessive animations that impact performance
  • Don't load unnecessary fonts or external scripts
  • Avoid deeply nested flexbox layouts that cause rendering issues
0
Grade B-AI Skill Framework
Scorecard
Criteria Breakdown
Quick Start
13/15
Workflow
10/15
Examples
12/20
Completeness
10/20
Format
15/15
Conciseness
12/15