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.
Social Media Site (Part 2)
Directions
Edit your starter code (see below) to create a social media site that looks and behaves like the video above.
Starter Code [download]
Create a folder called day_7
and create three files inside of it:
day_7
index.html
styles.css
index.js
Now, copy this paste this code into them:
<!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>
Resources
No new videos or notes today. Just you, the internet, and our community at:
Want to show off your work? Post your results on Parthean Community.
Last updated
Was this helpful?