Reveal Modal Example - Foundation Typing CST Test
Loading…
Reveal Modal Example — Foundation Code
Shows how to create a modal dialog using Foundation's Reveal component.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.7.5/dist/css/foundation.min.css">
<title>Foundation Modal</title>
</head>
<body>
<div class="grid-container text-center">
<button class="button" data-open="exampleModal1">Open Modal</button>
<div class="reveal" id="exampleModal1" data-reveal>
<h1>Modal Title</h1>
<p>This is a Foundation Reveal modal example.</p>
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.7.5/dist/js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>Foundation Language Guide
Foundation is a responsive front-end framework that provides a mobile-first grid system, prebuilt UI components, and flexible styling utilities. It is designed to speed up development while maintaining accessibility and consistency.
Primary Use Cases
- ▸Responsive web apps
- ▸Corporate websites
- ▸Prototyping and MVPs
- ▸Design systems and UI kits
- ▸Accessible front-end development
Notable Features
- ▸Mobile-first responsive grid
- ▸Prebuilt UI components (buttons, forms, modals)
- ▸Sass-based customization
- ▸Accessibility-ready components
- ▸Built-in JavaScript plugins
Origin & Creator
Created by ZURB in 2011 as a professional-grade front-end framework for rapid prototyping and production-ready websites.
Industrial Note
Foundation is ideal for teams needing accessible, responsive, and enterprise-ready front-end frameworks, especially in complex web applications and rapid prototyping environments.