Intro to Web Design!
HTML / CSS
+ jQuery
Before we jump into the code, I want to share something with you...
In 2015,
only 25% of computer scientists were women
and < 10% were women of color.
& that means good ideas might not get heard.
Diversity is necessary for
An investigation of 500 U.S. businesses found that companies with more race and gender diverse teams had higher sales revenue, more customers, greater market share, and greater profits than less diverse companies.
Herring, Cedric. (2009). Does diversity pay?
American Sociological Review, 74(2), 213.
Open the following template:
And then "Fork" it
This creates a new copy of the project that you can edit, without changing the original
Sign up for an account if you want, but you don't have to.
The "MVP" has just enough features to make it useful.
Fill in the missing percents %
Fill in your answer to the question, "Why do we need more women and diversity in computer science?"
Replace the snoopy image URL under "About the Author" with an image that represents you
Fill in "My name is..." and tell us about yourself.
body {
Change the background URL to any image you like
Change the text color, font-family, and/or font-size
Color hint: Here's a list of CSS color codes
}
a {Change the color of links & link hover}
.accent {Change the accent color}
.container {Change any of these properties}
If it's not there, just "Quick-add" jQuery
<div id="nav">
<a id="nav-home"> Home </a>
<a id="nav-about"> About </a>
</div>
#nav {
text-align: right;
margin: 50px;
}
#nav-home, #nav-about {
margin: 10px;
cursor: pointer;
}
$("#about").hide();
$("#nav-about").click(function(){
$("#about").show();
$("#home").hide();
});
$("#nav-home").click(function(){
???
???
});
.show()
.fadeIn()