Skip to content

Instantly share code, notes, and snippets.

@RachBLondon
RachBLondon / JavaScript-Tabs.js
Created September 24, 2015 09:31 — forked from Jiert/JavaScript-Tabs.js
Creating Tabs with Vanilla JavaScript
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tabs</title>
<style>
.nav .active a { color: red; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
</style>
</head>