Day 7
Let's get back to that Social Media website we started a few days back. This time, let's add multiple pages and use some of that Javascript knowledge we've been learning.
Last updated
Let's get back to that Social Media website we started a few days back. This time, let's add multiple pages and use some of that Javascript knowledge we've been learning.
Last updated
<!DOCTYPE html>
<html>
<head>
<title>SAMStagram</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>
/* Your css code here */// Your Code Here