Skip to content

Commit eda0e41

Browse files
committed
gave links in reference page and added a scrolling image in index page
1 parent 3424701 commit eda0e41

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

src/lab/final-build/EXP_1sep2010/exp2/References.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h1 class="text-h2-lightblue"> Schematic Design Of Transistor Level NAND & NOR G
106106
<!-- <li> http://www.iue.tuwien.ac.at/phd/pichler/node75.html, http://www.hitequest.com/Kiss/VLSI.html</li><br> -->
107107
<li><b>CMOS: Circuit Design, Layout, and Simulation, Third Edition</b> by Bacor, R. Jacob. Wiley-IEEE. pp. 1174.Chen, Wai-Kai (ed) (2006). </li><br>
108108
<li><b>The VLSI Handbook, Second Edition (Electrical Engineering Handbook)</b> by Boca Raton: CRC. ISBN 0-8493-4199-X.</li><br>
109-
<li>http://jas.eng.buffalo.edu/education/fab/NMOS/nmos.html</li><br>
109+
<li><a href="http://jas.eng.buffalo.edu/education/fab/NMOS/nmos.html" >http://jas.eng.buffalo.edu/education/fab/NMOS/nmos.html</a></li><br>
110110
</ol>
111111
<!-- </font> -->
112112

src/lab/final-build/EXP_1sep2010/exp3/References.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ <h1 class="text-h2-lightblue">Schematic Design Of Transistor Level XOR & XNOR Ga
105105
<!-- <li> http://www.iue.tuwien.ac.at/phd/pichler/node75.html, http://www.hitequest.com/Kiss/VLSI.html</li><br> -->
106106
<li><b>CMOS: Circuit Design, Layout, and Simulation, Third Edition</b> by Bacor, R. Jacob. Wiley-IEEE. pp. 1174. Chen, Wai-Kai (ed) (2006). </li><br>
107107
<li><b>The VLSI Handbook, Second Edition (Electrical Engineering Handbook)</b> by Boca Raton: CRC. ISBN 0-8493-4199-X.</li><br>
108-
<li>http://jas.eng.buffalo.edu/education/fab/NMOS/nmos.html</li><br>
108+
<li><a href ="http://jas.eng.buffalo.edu/education/fab/NMOS/nmos.html">http://jas.eng.buffalo.edu/education/fab/NMOS/nmos.html</a></li><br>
109109
<ol>
110110
<!-- </font> -->
111111

src/lab/index.html

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,17 +119,13 @@ <h1 class="text-h2-lightblue">Very Large Scale Integration Lab</h1><div>
119119
(DRCs) for layout design and can test design rules of their designs.</p></li><br>
120120
<ol></ol><br><br>
121121
</br></br></br></br></br></br></ul></p>
122-
<center>
123-
<!-- <img height="" name="slideImg" src="./images_slide/IntroFig2.png" width="">
124-
</img> -->
125122
<div class="w3-content" style="max-width:400px">
126123

127124
<img class = "mySlides" src="images_slide/IntroFig2.png" style="width:100%">
128125
<img class = "mySlides" src="images_slide/IntroFig3.png" style="width:100%">
129126
<img class = "mySlides" src="images_slide/IntroFig4.png" style="width:100%">
130127

131128
</div>
132-
</center>
133129
</br></br></div> </div>
134130
</div>
135131
</div>
@@ -250,5 +246,21 @@ <h2 class="text-h2-lightblue-small" style="font-weight: bold;margin-top: 0px;">
250246

251247
});
252248
</script>
249+
250+
<script>
251+
var myIndex = 0;
252+
carousel();
253+
function carousel() {
254+
var i;
255+
var x = document.getElementsByClassName("mySlides");
256+
for (i = 0; i < x.length; i++) {
257+
x[i].style.display = "none";
258+
}
259+
myIndex++;
260+
if (myIndex > x.length) {myIndex = 1}
261+
x[myIndex-1].style.display = "block";
262+
setTimeout(carousel, 2000); // Change image every 2 seconds
263+
}
264+
</script>
253265

254266
</html>

0 commit comments

Comments
 (0)