35 lines
894 B
HTML
35 lines
894 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Welcome Screen</title>
|
|
<link rel="stylesheet" href="css.css" type="text/css">
|
|
<script src="bin/scripts.js" ></script>
|
|
</head>
|
|
<body>
|
|
<div id=bg><img src="imgs/background.png"/></div>
|
|
|
|
|
|
<div style="float: left;clear:left;">
|
|
<a class="menu" href="software/" target="frame">Recommended Software</a>
|
|
<a class="menu" href="aboutUs/" target="frame">About Sol-OS</a>
|
|
<a class="menu" href="tutVid/" target="frame">Tutorial Video</a>
|
|
<a class="menu" href="license/" target="frame">License</a>
|
|
</div>
|
|
|
|
|
|
<div style="float: right;">
|
|
<a class="menu" href="index.html"><img style="height:2em;width:2em;" src="imgs/icons/refresh.png" alt"Refresh img"/></a>
|
|
<a class="menu" href="cgi-bin/quit.cgi">Quit</a>
|
|
</div>
|
|
|
|
<div id="container">
|
|
<iframe name="frame" frameborder="0" class="contains" src=""></iframe>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|