-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html class="no-js" lang="pt-BR" xml:lang="pt-BR">
<head>
<meta charset="utf-8">
<title>Logos</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="dist/style.css">
<script type="text/javascript">
// to identify if javascript is active
var tagHtml = document.getElementsByTagName("html")[0];
tagHtml.className = tagHtml.className.replace('no-js', 'js');
</script>
</head>
<body>
<section class="browsers">
<h1 class="browsers-title">Browsers</h1>
<ul class="browsers-list">
<li class="browsers-item">
<div class="ie">
<div class="ie-letter">
<div class="ie-spot"></div>
<div class="inside-top"></div>
<div class="inside-bottom"></div>
</div>
<div class="ring"></div>
</div>
</li>
</ul>
</section>
</body>
</html>