OIM3690 - Web Technologies

2025 Spring

Session 12 (3/04)

contain

Today's Agenda

Welcome/News/Announcements

  • It seems many have trouble getting GitHub Student Developer Pack.
  • Next Class:
    • Quiz on HTML + CSS
    • Start JavaScript
  • Communications:
    • Meet with me in person during office hours at least once this semester.
    • Email - specify course # in subject title, e.g., "OIM3690: GitHub settings"
    • Use Slack/GitHub when asking code-related questions
  • Questions?

What we have learned so far...

  • HTML
    • Basic tags, images, links, lists, id, class, div, span, tables, forms, multimedia
    • Block-level elements VS. inline elements
  • CSS
    • Syntax
    • Internal CSS vs. external CSS vs. inline CSS
    • Selectors - basic, advanced, pseudo-elements ::, pseudo-class :
    • CSS layout: flex, grid

Quick Quiz

  • How do we center an element horizontally?
    • text-align: center;
    • margin: 0 auto;
    • display: flex; justify-content: center;
    • display: grid; justify-items: center;
  • What is the commonly used tag to embed other content/document?
    • <iframe>
  • What is svg?

Coding Conventions

A Brief History of Web Design

Document and Website Structure

Website design

Publishing Website

How the Web works