-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·41 lines (41 loc) · 1.35 KB
/
about.html
File metadata and controls
executable file
·41 lines (41 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta charset="UTF-8">
<title>BellevueJS</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="icon" type="image/x-icon" sizes="16x16 32x32 64x64" href="favicon.ico" />
<link rel="icon" type="image/png" sizes="196x196" href="/img/icon.png">
<link rel="apple-touch-icon" href="/img/icon.png">
<link rel="stylesheet" type="text/css" href="dist/main.min.css" />
</head>
<body>
<header>
<a href="index.html">
<picture>
<source srcset="img/logo-sm.png" media="(max-width: 800px)">
<img src="img/logo.png" alt="BellevueJS" />
</picture>
</a>
<nav class="main-nav">
<ul class="main-nav-list">
<li class="main-nav-item">
<a href="index.html" class="main-nav-link">Home</a>
</li>
<li class="main-nav-item">
<a href="archive.html" class="main-nav-link">Talks</a>
</li>
<li class="main-nav-item">
<a href="about.html" class="main-nav-link active">About</a>
</li>
</ul>
</nav>
</header>
<section>
<h1>About</h1>
<p>BellevueJS provides an opportunity to meet other local JavaScripters, share knowledge, and learn about the latest in JavaScript on the Eastside.</p>
</section>
<script type="text/javascript" src="src/talks.js"> </script>
</body>
</html>