Web Implementation Guidelines Group Component Builder Information (v3+)

Generic HTML Template

If you need a generic HTML template, feel free to use this:

<!DOCTYPE html> 
<html lang="en"> 
    <head> 
        <meta charset="utf-8">
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
        <meta name="viewport" content="width=device-width, initial-scale=1"> 
        <link rel="icon" href="https://cdn.brand.illinois.edu/favicon.ico"> 
        <link rel="apple-touch-icon" href="https://cdn.brand.illinois.edu/touch-icon-40x40.png">
        <link rel="apple-touch-icon" sizes="152x152" href="https://cdn.brand.illinois.edu/touch-icon-152x152.png">
        <link rel="apple-touch-icon" sizes="167x167" href="https://cdn.brand.illinois.edu/touch-icon-167x167.png">
        <link rel="apple-touch-icon" sizes="180x180" href="https://cdn.brand.illinois.edu/touch-icon-180x180.png">
        <link rel="dns-prefetch" href="//cdn.toolkit.illinois.edu"> 
        <link rel="dns-prefetch" href="//cdn.disability.illinois.edu"> 
        <link rel="stylesheet" href="//cdn.toolkit.illinois.edu/3/toolkit.css">
        <script type="module" src="//cdn.toolkit.illinois.edu/3/toolkit.js"></script>
        <script src="//cdn.disability.illinois.edu/skipto.min.js"></script>
        <script>var SkipToConfig = { 'settings': { 'skipTo': { colorTheme: 'illinois' } } };</script>
        <title> <!-- Add title here --> </title>
        <!-- Add custom header tags here --> 
    </head>
    <body style="margin: 0;">
        <ilw-page>
            <ilw-header slot="header">
            <!-- Add header details here -->
            </ilw-header>
            <main>
            <!-- Add content details here -->
            </main>
            <ilw-footer slot="footer">
            <!-- Add footer details here -->
            </ilw-footer>
    </body>
</html>

Notes

  1. Add <!DOCTYPE>, <html> and <head> tags
  2. Add standard <meta> tags
  3. Add <link> tags for icons
  4. Add <link> tags for DNS prefetch (for optimized loading)
  5. Add <link> and <script> tags for toolkit
  6. Add <script> tags for SkipTo links
  7. Add your <title> tags and any custom tags in your header
  8. Add your <body> tag. Note that you should make the body margin 0.
  9. Add your <ilw-page>, <ilw-header>, and <ilw-footer> tags. The <header> and <footer> regions are automatically added by the <ilw-header>, and <ilw-footer> components.

What next?

Web Implementation Guidelines Group Component Builder Information (v3+) Create an issue with the new toolkit builder