Strategic Communications and Marketing Brand Guidelines

Part 3: Structured Data - Prewritten Examples You Can Use

Importance

This section provides prewritten structured data for frequently used pages such as your homepage, about, FAQ and contact page. Adding custom schema will improve your website’s SEO and AEO.

Target Audience

  • Content Creators/Writers
  • Design
  • Web Dev/IT

Introduction

Below are meta tags, descriptions, JSON-LD schema templates. Please edit to customize to your needs.

Step 1 – Critical Meta Tags

Customize the highlighted sections and add this code to at least the top 10 pages.

<meta name=”description” content=”Concise, benefit-focused summary for this page at the University of Illinois Urbana-Champaign.“>

<meta name=”modifieddate” content=”2025-11-18T12:00:00Z“>

<meta name=”category” content=”events“>  /*choose from technology, events, safety, services, admissions*/    

Step 2 – Add code based on page elements

3.1 Homepage of Site

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "CollegeOrUniversity",
      "@id": "https://aces.illinois.edu/#org",
      "name": "College of Agricultural, Consumer and Environmental Sciences (ACES)",
      "alternateName": ["College of ACES", "ACES, University of Illinois Urbana-Champaign"],
      "description": "The College of Agricultural, Consumer and Environmental Sciences (ACES) at the University of Illinois advances Ag teaching, research and outreach that improve lives and communities in Illinois and around the world.",
      "url": "https://aces.illinois.edu/",
      "logo": "https://cdn.brand.illinois.edu/icon.svg",
      "telephone": "+1-217-333-0460",
      "email": "aces@illinois.edu",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "227 Mumford Hall, MC 710, 1301 W Gregory Dr.",
        "addressLocality": "Urbana",
        "addressRegion": "IL",
        "postalCode": "61801",
        "addressCountry": "US"
      },
      "parentOrganization": { "@id": "https://illinois.edu/#org" },
      "sameAs": [
        "https://www.instagram.com/acesillinois/",
        "https://www.facebook.com/UofICollegeofACES",
        "https://www.linkedin.com/showcase/college-of-aces/",
        "https://www.youtube.com/user/ACESAcademicPrograms"
      ]
    },
    {
      "@type": "WebSite",
      "@id": "https://aces.illinois.edu/#website",
      "url": "https://aces.illinois.edu/",
      "name": "College of ACES | University of Illinois Urbana-Champaign",
      "publisher": {"@id": "https://aces.illinois.edu/#org"}
    }
  ]
}
</script>

3.2 About Page (AboutPage + Organization)

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "AboutPage",
      "@id": "https://ahs.illinois.edu/about/#about",
      "url": "https://ahs.illinois.edu/about/",
      "name": "About | College of Applied Health Sciences, University of Illinois Urbana-Champaign",
      "description": "Learn about the College of Applied Health Sciences (AHS) at the University of Illinois Urbana-Champaign — a hub for advancing health, wellness, and inclusion through research, teaching, and community engagement.",
      "breadcrumb": {
        "@type": "BreadcrumbList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://ahs.illinois.edu/" },
          { "@type": "ListItem", "position": 2, "name": "DRES", "item": "http://dres.illinois.edu/" },
          { "@type": "ListItem", "position": 3, "name": "Chez Veterans Center", "item": "https://chezveteranscenter.ahs.illinois.edu/" },
          { "@type": "ListItem", "position": 4, "name": "Apply", "item": "https://ahs.illinois.edu/admissions/" },
          { "@type": "ListItem", "position": 5, "name": "Academics", "item": "https://ahs.illinois.edu/academics/" },
          { "@type": "ListItem", "position": 6, "name": "Research & Community", "item": "https://ahs.illinois.edu/research-and-community/" }
        ]
      },
      "publisher": { "@id": "https://ahs.illinois.edu/#org" },
      "isPartOf": { "@id": "https://ahs.illinois.edu/#website" },
      "inLanguage": "en",
      "dateModified": "2025-10-30"
    }
  ]
}
</script>

3.3 Notable Alumni (Person)

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://grainger.illinois.edu/alumni/hall-of-fame/Sidney-Lu#webpage",
      "url": "https://grainger.illinois.edu/alumni/hall-of-fame/Sidney-Lu",
      "name": "Sidney Lu | Hall of Fame | The Grainger College of Engineering",
      "mainEntity": { "@id": "https://grainger.illinois.edu/alumni/hall-of-fame/Sidney-Lu#person" },
      "publisher": { "@id": "https://grainger.illinois.edu/#college" }
    },
    {
      "@type": "Person",
      "@id": "https://grainger.illinois.edu/alumni/hall-of-fame/Sidney-Lu#person",
      "name": "Sidney Lu",
      "description": "Chairman of the Board and CEO of Foxconn Interconnect Technology (FIT), recognized for extraordinary business leadership that revolutionized global electronics manufacturing while advancing engineering innovation and education.",
      "jobTitle": "Chairman of the Board and Chief Executive Officer",
      "worksFor": { "@id": "https://grainger.illinois.edu/alumni/hall-of-fame/Sidney-Lu#fit" },
      "alumniOf": [
        { "@id": "https://grainger.illinois.edu/#college" },
        { "@id": "https://illinois.edu/#org" }
      ],
      "hasCredential": [
        {
          "@type": "EducationalOccupationalCredential",
          "name": "B.S., Mechanical Engineering",
          "credentialCategory": "Bachelor of Science",
          "educationalLevel": "Bachelor's degree",
          "recognizedBy": { "@id": "https://illinois.edu/#org" },
          "dateCreated": "1981"
        },
        {
          "@type": "EducationalOccupationalCredential",
          "name": "B.S., Mathematics",
          "credentialCategory": "Bachelor of Science",
          "educationalLevel": "Bachelor's degree",
          "recognizedBy": { "@id": "https://illinois.edu/#org" },
          "dateCreated": "1981"
        }
      ],
      "award": [
        "Distinguished Alumni, Department of Mechanical Science and Engineering (2011)",
        "The Grainger College of Engineering Alumni Award for Distinguished Service (2015)"
      ]
    },
    {
      "@type": "Organization",
      "@id": "https://grainger.illinois.edu/alumni/hall-of-fame/Sidney-Lu#fit",
      "name": "Foxconn Interconnect Technology (FIT)"
    },
    {
      "@type": "CollegeOrUniversity",
      "@id": "https://grainger.illinois.edu/#college",
      "name": "The Grainger College of Engineering",
      "url": "https://grainger.illinois.edu/",
      "parentOrganization": {
        "@type": "CollegeOrUniversity",
        "@id": "https://illinois.edu/#org",
        "name": "University of Illinois Urbana-Champaign",
        "logo": {
          "@type": "ImageObject",
          "url": "https://cdn.brand.illinois.edu/icon.svg"
        }
      }
    }
  ]
}
</script>

3.4 Awards Listing (ItemList)

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Stephanie Lulay",
  "description": "Executive Editor and Co-Founder of Block Club Chicago and recipient of the 2025 College of Media Emerging Leader Award from the University of Illinois Urbana-Champaign.",
  "url": "https://media.illinois.edu/journalism-alum-stephanie-lulay-wins-2025-college-of-media-emerging-leader-award/",
  "image": "https://media.illinois.edu/path-to-article-image.jpg",
  "jobTitle": "Executive Editor and Co-Founder",
  "worksFor": {
    "@type": "Organization",
    "name": "Block Club Chicago",
    "url": "https://blockclubchicago.org/"
  },
  "alumniOf": {
    "@type": "CollegeOrUniversity",
    "name": "University of Illinois Urbana-Champaign",
    "url": "https://illinois.edu/"
  },
  "award": "2025 College of Media Emerging Leader Award",
  "sameAs": [
    "https://www.linkedin.com/in/stephanielulay/",
    "https://blockclubchicago.org/"
  ],
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://media.illinois.edu/journalism-alum-stephanie-lulay-wins-2025-college-of-media-emerging-leader-award/"
  }
}
</script>

3.5 Research/News (NewsArticle)

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "NewsArticle",
  "headline": "Illinois chemist named 2025 Packard Fellow",
  "description": "Benjamin Snyder, a University of Illinois Urbana-Champaign chemistry professor, has been named a 2025 Packard Fellow by the David and Lucile Packard Foundation.",
  "datePublished": "2025-10-15T08:24:00-05:00",
  "dateModified": "2025-10-15",
  "author": {
    "@type": "Person",
    "name": "Lois Yoksoulian",
    "jobTitle": "Physical Sciences and Media Editor"
  },
  "publisher": {
    "@type": "CollegeOrUniversity",
    "@id": "https://illinois.edu/#org",
    "name": "University of Illinois Urbana-Champaign",
    "logo": {
      "@type": "ImageObject",
      "url": "https://cdn.brand.illinois.edu/icon.svg"
    }
  },
  "sourceOrganization": {
    "@type": "Organization",
    "name": "Illinois News Bureau",
    "url": "https://news.illinois.edu/"
  },
  "mainEntityOfPage": "https://news.illinois.edu/illinois-chemist-named-2025-packard-fellow/",
  "inLanguage": "en"
}
</script>

3.6 Course

Adding course schema to each course can be a tedious task for any marketing team. You can establish program schema for your most popular program or use the auto schema option in your SEO plugin to automatically generate course schema for all courses.

Screenshot of schema types offered by SEOPress plugin.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://anthro.illinois.edu/undergraduate-programs/graduate-studies-programs/phd-anthropology#webpage",
      "url": "https://anthro.illinois.edu/undergraduate-programs/graduate-studies-programs/phd-anthropology",
      "name": "Ph.D. in Anthropology | Department of Anthropology, University of Illinois Urbana-Champaign",
      "inLanguage": "en",
      "dateModified": "2025-10-30",
      "publisher": { "@id": "https://anthro.illinois.edu/#dept" },
      "mainEntity": { "@id": "https://anthro.illinois.edu/undergraduate-programs/graduate-studies-programs/phd-anthropology#program" }
    },
    {
      "@type": "EducationalOccupationalProgram",
      "@id": "https://anthro.illinois.edu/undergraduate-programs/graduate-studies-programs/phd-anthropology#program",
      "url": "https://anthro.illinois.edu/undergraduate-programs/graduate-studies-programs/phd-anthropology",
      "name": "Ph.D. in Anthropology",
      "description": "Doctoral training in Archaeology, Biological Anthropology, and Sociocultural & Linguistic Anthropology at the University of Illinois Urbana-Champaign.",
      "educationalCredentialAwarded": {
        "@type": "EducationalOccupationalCredential",
        "name": "Ph.D. in Anthropology",
        "credentialCategory": "doctorate"
      },
      "programType": "Doctoral program",
      "numberOfCredits": { "@type": "QuantitativeValue", "value": 96, "unitText": "credit hours" },
      "educationalProgramMode": ["OnCampus", "InResidence"],
      "provider": { "@id": "https://anthro.illinois.edu/#dept" }
    },
    {
      "@type": "EducationalOrganization",
      "@id": "https://anthro.illinois.edu/#dept",
      "name": "Department of Anthropology",
      "url": "https://anthro.illinois.edu/",
      "parentOrganization": { "@id": "https://illinois.edu/#org" }
    }
  ]
}
</script>

3.7 FAQ (FAQPage)

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "Why do I need to use “Illinois” or “U. of I.” instead of “UIUC”?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "UIUC is not a well-known shorthand across audiences, and research has shown that it confuses audiences and diminishes reputation. Consistency strengthens global recognition, even in internal interactions."
      }
    }
  ],
  "url": "https://brand.illinois.edu/messaging/name-and-boilerplate",
  "inLanguage": "en",
  "publisher": {
    "@type": "CollegeOrUniversity",
    "@id": "https://illinois.edu/#org",
    "name": "University of Illinois Urbana-Champaign",
    "url": "https://illinois.edu/",
    "logo": {
      "@type": "ImageObject",
      "url": "https://cdn.brand.illinois.edu/icon.svg"
    }
  }
}
</script>

3.8 Directory Page

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "ItemList",
  "name": "Leadership Team",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "item": {
        "@type": "Person",
        "name": "Jamelle Sharpe",
        "jobTitle": "Dean, Professor of Law, Guy Raymond Jones Faculty Scholar",
        "worksFor": {
          "@id": "https://law.illinois.edu/#org"
        },
        "url": "https://law.illinois.edu/faculty-research/faculty-profiles/jamelle-sharpe/",
        "email": "jcsharpe@illinois.edu",
        "telephone": "(217) 333-0917"
      }
    },
    {
      "@type": "ListItem",
      "position": 2,
      "item": {
        "@type": "Person",
        "name": "Colleen Murphy",
        "jobTitle": "Associate Dean for Academic Affairs, Roger and Stephany Joslin Professor of Law",
        "worksFor": {
          "@id": "https://law.illinois.edu/#org"
        },
        "url": "https://law.illinois.edu/faculty-research/faculty-profiles/colleen-murphy/",
        "email": "colleenm@illinois.edu",
        "telephone": "(217) 244-0675"
      }
    },
    {
      "@type": "ListItem",
      "position": 3,
      "item": {
        "@type": "Person",
        "name": "Margareth Etienne",
        "jobTitle": "Senior Associate Dean for Graduate and International Programs, Carl L. Vacketta Professor of Law",
        "worksFor": {
          "@id": "https://law.illinois.edu/#org"
        },
        "url": "https://law.illinois.edu/faculty-research/faculty-profiles/margareth-etienne/",
        "email": "metienne@illinois.edu",
        "telephone": "(217) 265-0878"
      }
    },
    {
      "@type": "ListItem",
      "position": 4,
      "item": {
        "@type": "Person",
        "name": "Lesley Wexler",
        "jobTitle": "Associate Dean for Research, John D. Colombo Professor of Law",
        "worksFor": {
          "@id": "https://law.illinois.edu/#org"
        },
        "url": "https://law.illinois.edu/faculty-research/faculty-profiles/lesley-wexler/",
        "email": "lmwexler@illinois.edu",
        "telephone": "(217) 244-3449"
      }
    },
    {
      "@type": "ListItem",
      "position": 5,
      "item": {
        "@type": "Person",
        "name": "Robin B. Kar",
        "jobTitle": "Associate Dean for Curricular Innovation, Professor of Law and Philosophy",
        "worksFor": {
          "@id": "https://law.illinois.edu/#org"
        },
        "url": "https://law.illinois.edu/faculty-research/faculty-profiles/robin-b-kar/",
        "email": "rkr@illinois.edu"
      }
    }
  ]
}</script>

3.9 Person

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Person",
      "@id": "https://provost.illinois.edu/staff-directory/john-coleman/#person",
      "name": "John Coleman",
      "jobTitle": "Provost and Executive Vice Chancellor for Academic Affairs",
      "worksFor": { "@id": "https://illinois.edu/#org" },
      "email": "jc1@illinois.edu",
      "telephone": "+1-217-333-6677",
      "url": "https://provost.illinois.edu/staff-directory/john-coleman/",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://provost.illinois.edu/staff-directory/john-coleman/"
      },
      "alumniOf": [
        {
          "@type": "CollegeOrUniversity",
          "name": "Massachusetts Institute of Technology"
        },
        {
          "@type": "CollegeOrUniversity",
          "name": "Clark University"
        }
      ],
      
      "knowsAbout": [
        "Political parties",
        "Elections and voting",
        "Legislative–executive relations",
        "Divided government",
        "Campaign finance",
        "American political development",
        "Politics and economics"
      ]
    },
    {
      "@type": "CollegeOrUniversity",
      "@id": "https://illinois.edu/#org",
      "name": "University of Illinois Urbana-Champaign",
      "url": "https://illinois.edu/",
      "logo": {
        "@type": "ImageObject",
        "url": "https://cdn.brand.illinois.edu/icon.svg"
      }
    }
  ]
}
</script>

3.10 Contact Page

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "ContactPage",
      "@id": "https://ischool.illinois.edu/about/contact-us/#page",
      "url": "https://ischool.illinois.edu/about/contact-us/",
      "name": "Contact Us | School of Information Sciences, University of Illinois Urbana-Champaign",
      "description": "Find contact information for the School of Information Sciences at the University of Illinois Urbana-Champaign, including phone number, email, and mailing address for administrative offices.",
      "isPartOf": { "@id": "https://ischool.illinois.edu/#website" }
    },
    {
      "@type": "CollegeOrUniversity",
      "@id": "https://ischool.illinois.edu/#org",
      "name": "School of Information Sciences, University of Illinois Urbana-Champaign",
      "alternateName": ["Illinois", "Urbana campus", "UIUC"],
      "url": "https://ischool.illinois.edu/",
      "logo": {
        "@type": "ImageObject",
        "url": "https://cdn.brand.illinois.edu/icon.svg"
      },
      "parentOrganization": {
        "@type": "CollegeOrUniversity",
        "name": "University of Illinois Urbana-Champaign",
        "alternateName": ["Illinois", "Urbana campus", "UIUC"],
        "url": "https://illinois.edu/"
      },
      "contactPoint": {
        "@type": "ContactPoint",
        "contactType": "Administrative Offices",
        "telephone": "+1-217-333-3280",
        "email": "ischool@illinois.edu"
      },
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "501 E. Daniel Street, Room 112",
        "addressLocality": "Champaign",
        "addressRegion": "IL",
        "postalCode": "61820-6211",
        "addressCountry": "US"
      }
    }
  ]
}
</script>

3.11 Event

{
  "@context": "https://schema.org",
  "@type": "Event",
  "name": "University of Illinois Homecoming 2025",
  "startDate": "2025-09-21",
  "endDate": "2025-09-27",
  "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
  "eventStatus": "https://schema.org/EventScheduled",
  "location": {
    "@type": "Place",
    "name": "University of Illinois Urbana-Champaign",
    "address": {
      "@type": "PostalAddress",
      "streetAddress": "601 E John St",
      "addressLocality": "Champaign",
      "addressRegion": "IL",
      "postalCode": "61820",
      "addressCountry": "US"
    }
  },
  "image": "https://homecoming.illinois.edu/images/homecoming.jpg",
  "description": "Join us September 21–27, 2025, for a weeklong celebration of homecoming events at the University of Illinois.",
  "organizer": {
    "@type": "Organization",
    "name": "University of Illinois Alumni Association",
    "url": "https://homecoming.illinois.edu",
    "contactPoint": {
      "@type": "ContactPoint",
      "telephone": "+1-217-333-2121",
      "email": "homecoming@illinois.edu"
    }
  },
  "subEvent": [
    {
      "@type": "Event",
      "name": "Kickoff Event",
      "startDate": "2025-09-21T08:00",
      "location": {
        "@type": "Place",
        "name": "Alice Campbell Alumni Center",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "601 S Lincoln Ave",
          "addressLocality": "Urbana",
          "addressRegion": "IL",
          "postalCode": "61801",
          "addressCountry": "US"
        }
      },
      "description": "Kick off Homecoming 2025 with the annual Alumni Center Fountain dyeing and a pancake breakfast."
    },
    {
      "@type": "Event",
      "name": "Illinois Homecoming Run",
      "startDate": "2025-09-21T09:00",
      "location": {
        "@type": "Place",
        "name": "Anniversary Plaza",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "1401 W Green St",
          "addressLocality": "Urbana",
          "addressRegion": "IL",
          "postalCode": "61801",
          "addressCountry": "US"
        }
      },
      "description": "Join us for the annual Illinois Homecoming Run from the east end of Anniversary Plaza to the Alice Campbell Alumni Center."
    },
    {
      "@type": "Event",
      "name": "Homecoming Parade",
      "startDate": "2025-09-26T18:00",
      "location": {
        "@type": "Place",
        "name": "Intersection of Kirby Avenue and Fourth Street",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "Kirby Avenue and Fourth Street",
          "addressLocality": "Champaign",
          "addressRegion": "IL",
          "postalCode": "61820",
          "addressCountry": "US"
        }
      },
      "description": "The annual Homecoming Parade starts at the intersection of Kirby Avenue and Fourth Street, heading west on Gregory Drive and turning south on First Street."
    },
    {
      "@type": "Event",
      "name": "Game Day",
      "startDate": "2025-09-27T11:00",
      "location": {
        "@type": "Place",
        "name": "Gies Memorial Stadium",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "1402 S 1st St",
          "addressLocality": "Champaign",
          "addressRegion": "IL",
          "postalCode": "61820",
          "addressCountry": "US"
        }
      },
      "description": "The football game against USC is on Saturday, September 27, at 11 a.m. CST. Tickets are sold through the Fighting Illini."
    }
  ]
}

Schema Best Practices and Tips

  • Refer to best practices on structured data and meta descriptions by Google.
  • Always validate schema using Schema Markup Validator before publishing.
  • Use consistent @id references to your main organization node so that pages relate back correctly.
  • Only mark up content visible on the page (e.g., if you include FAQs, those questions and answers must appear to users.)
  • Don’t overuse schema — focus on your high-value content types (Admissions, Research, News, Alumni).

Common Fields to Optimize in Schema:

FieldUse
name “University of Illinois Urbana-Champaign” or “Illinois”
description “The University of Illinois Urbana-Champaign is a global leader in teaching, research, public engagement, economic development and health care since 1867.” 
logo https://cdn.brand.illinois.edu/icon.svg” 
url https://illinois.edu/” 
email “stratcom@illinois.edu” 
telephone “+1-217-333-1000” 

Implementation Guide

Meta Tags

  • Add all meta tags inside the <head> section of every HTML page (before the schema block). Include essential and SearchStax-compatible fields:
    • <title> — on brand, concise, unique and keyword-aligned. This will change the Title of the page. Title of the page is different from the H1 of the page.
    • <meta name=”description” content=” Concise, benefit-focused summary of the page.”>
    • <meta name=”modifieddate” content=”YYYY-MM-DD”> — used by SearchStax and search engines to show freshness.
    • <meta name=”category” content= “research, news, etc.”> — helps categorize pages in SearchStax and Google.
  • Keep descriptions under 160 characters, use sentence case, and avoid quotes or symbols inside content values.
  • Review and update description, modifieddate and category whenever page content or purpose changes.
  • If you are using a plugin, add the modifieddate and category into the custom schema section before the  <script type=”application/ld+json”>

Schema Markup

  • Add schema as a single block of JSON-LD using <script type=”application/ld+json”> inside the <head> (after meta tags).
  • Choose the most specific Schema.org type that fits the page (e.g., WebPage, ContactPage, Person, CollegeOrUniversity).
  • Always use absolute URLs (https://…) and the official Illinois logo file: https://cdn.brand.illinois.edu/icon.svg.
  • Validate markup in the Schema Markup Validator before publishing or deployment.

SEO Plugin Use

  • Use an SEO plugin (e.g., SEOPress, Yoast) to simplify management of meta fields and schema templates.
  • These tools can automatically generate or surface fields like modified date and category for SearchStax indexing.
  • Contact StratCom Analytics and Alignment Team (stratcomanalytics@illinois.edu) for guidance on plugin configuration and Illinois SEO standards.

Contact

Strategic Communications and Marketing Brand Guidelines

507 E. Green Street
MC-426
Champaign, IL 61820

Email: branding@illinois.edu

Phone 217-333-5010

Quick Links