32 lines
908 B
HTML
32 lines
908 B
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<!-- Remote style sheet -->
|
|
<link rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
|
|
|
|
<!-- Local style sheet relative to workspace folder -->
|
|
<link rel="stylesheet" href="styles/style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<ul>
|
|
<li><a class="slidinglink" href="#">Sliding Link</a></li>
|
|
<li><a href="#" class="swappinlink" data-replace="See"><span>Go</span></a></li>
|
|
<li><a href="#" class="growinglink"> Cool </a></li>
|
|
<li><a href="#" class="colorswapping"> Color Swapping </a></li>
|
|
<li><a href="#" class="rainbowlink"> Rainbow Underline</a></li>
|
|
<li><a href="#" class="passinglink"> Passing Underline</a></li>
|
|
</ul>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
<script src="script/index.js" ></script>
|
|
|
|
</html>
|