Index Added

This commit is contained in:
Glenwing 2017-08-17 18:40:36 -07:00
parent faaf5a4f86
commit 3e6af7a1a0
3 changed files with 84 additions and 0 deletions

View File

@ -15,6 +15,7 @@
}
div.main {
min-height:calc(100vh - 60px);
font-family:Consolas;
width:512px;
border:1px solid transparent;
margin-left:auto;

View File

@ -10,6 +10,8 @@
div.main {
border:1px solid transparent;
font-family:Consolas;
font-size:14px;
margin-left:auto;
margin-right:auto;
}

81
index.html Normal file
View File

@ -0,0 +1,81 @@
<!DOCTYPE html>
<meta name="viewport" content="width=device-width">
<style>
body {
font-family:Consolas;
font-size:14px;
}
div.main {
min-height:calc(100vh - 60px);
border:1px solid transparent;
font-family:Consolas;
font-size:14px;
margin-left:auto;
margin-right:auto;
}
span.title {
font-weight:bold;
}
table {
border:1px solid transparent;
}
td {
padding:8px;
vertical-align:middle;
border:1px solid transparent;
}
a:link {
color:#777777;
text-decoration:none;
}
a:visited {
color:#777777;
text-decoration:none;
}
a:hover {
color:#000000;
text-decoration:underline;
}
a:active {
color:#000000;
text-decoration:underline;
}
</style>
<html>
<head>
<title>Display Technology Information Repository and Utilities</title>
</head>
<body>
<div class="main">
<div style="font-weight:bold; font-size:16px;">Display Technology Information Repository and Utilities<br /><hr /></div>
<table>
<tr><td><span class="title">Utilities</span>
<ul>
<li><a href="./diu.html">Display Info Utility</a></li>
<li><a href="./flickerer.html">Flickering Utility (for response time testing)</a></li>
</ul>
</td></tr>
<tr><td><span class="title">Information</span>
<ul>
<li><a target="_blank" href="./adapters.html">Display Interfaces, Cables, and Adapters</a></li>
<li><a target="_blank" href="./docs.html">Display Industry Standards and Specifications Documents</a></li>
</ul>
</td></tr>
</table>
</div>
</body>
</html>
<footer onclick="document.getElementById('profile_link').click();"style="background-color:#DDDDDD; padding:8px; cursor:pointer;">
<a id="profile_link" target="_blank" href="https://linustechtips.com/main/profile/2466-glenwing/" style="color:#888888; text-decoration:none;">Glenwing</a>
</footer>