48 lines
906 B
HTML
48 lines
906 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>S10659043</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: "Times New Roman", serif;
|
||
|
font-size: 14pt;
|
||
|
background: url(image/bg.jpg) no-repeat center center fixed;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 80%;
|
||
|
height: 20rem;
|
||
|
margin: 5rem auto;
|
||
|
padding: 0.1rem 2rem;
|
||
|
border-radius: 1rem;
|
||
|
background-color: rgba(255, 255, 255, 0.7);
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
ul a {
|
||
|
color: rgb(55, 55, 55);
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>My projects</h1>
|
||
|
<ul>
|
||
|
<li>Signals & Systems</li>
|
||
|
<ol>
|
||
|
<li><a href="LTI">LTI system: Time & Freqency Response Analysis</a></li>
|
||
|
<li><a href="LTI/ppt">Presentation</a></li>
|
||
|
</ol>
|
||
|
<li>Concepts of Programming Languages</li>
|
||
|
<ol>
|
||
|
<li><a href="Compiler">Lexical, Syntax & Semantic Analysis</a></li>
|
||
|
</ol>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|