csslearn/index.html

38 lines
1016 B
HTML
Raw Normal View History

2023-01-08 07:55:05 +00:00
<!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>
2023-01-12 15:01:36 +00:00
<div class="git-logo">
<div class="line1"></div>
<div class="line2"></div>
</div>
2023-01-08 07:55:05 +00:00
<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>
2023-01-08 08:46:28 +00:00
<li><a href="#" class="growinglink"> Cool </a></li>
2023-01-11 11:43:43 +00:00
<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>
2023-01-08 07:55:05 +00:00
</ul>
</div>
</body>
<script src="script/index.js" ></script>
</html>