-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="icon" type="image/x-icon" href="icon.ico">
<title>Caesar.jl Home</title>
</head>
<body>
<!-- side bar-->
<div class="w3-sidebar w3-light-grey w3-bar-block" style="width:25%">
<a href="#" class="w3-bar-item w3-button">Functions</a>
<a href="#" class="w3-bar-item w3-button">Polynomial Functions</a>
<a href="#" class="w3-bar-item w3-button">Rational Functions</a>
<a href="#" class="w3-bar-item w3-button">Trigonometric Functions</a>
<a href="#" class="w3-bar-item w3-button">Applications of Trig. Functions</a>
</div>
<div style="margin-left:30%">
<div class="w3-container" w3-red><h1>Caesar.jl</h1></div>
<p>Welcome to <strong>Caesar.jl!</strong></p>
</div>
</body>
</html>