-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathabout.html
46 lines (43 loc) · 2.65 KB
/
about.html
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
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<title>CSS Grid Layout Examples - About</title>
</head>
<body style="padding-top: 50px;">
<a href="https://github.com/Igalia/css-grid-layout/"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 1050;" src="https://github-camo.global.ssl.fastly.net/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">CSS Grid Layout Examples</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="enable.html">Enable</a></li>
<li class="active"><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="jumbotron" style="margin: 50px;">
<img src="img/igalia-bloomberg.png" class="img-responsive" alt="Igalia & Bloomberg logos">
</div>
<div class="row">
<div class="col">
<p><big>This page and its examples have been created by <strong><a href="http://www.igalia.com">Igalia</a></strong>, who is currently working in the implementation of <a href="http://www.w3.org/TR/css-grid/">CSS Grid Layout</a> in <a href="http://www.chromium.org/blink">Blink</a> and <a href="http://www.webkit.org">WebKit</a>.</big></p>
<p><big>Thanks to <strong><a href="http://www.bloomberg.com/company/">Bloomberg</a></strong> for sponsoring this work.</big></p>
</div>
</div>
</div>
</body>
</html>