Skip to content
Open

dsm #12

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
83 changes: 83 additions & 0 deletions dsm.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
*{
box-sizing: border-box;
margin: 1px;
padding: 1px;

}
html/body {
background-color: black
}
.flex-container {
display: flex
}
.bold {
font-size: 20px;
font-weight: inherit;
}
.header {
width: 100%;
background-color: black;
color: yellow;
font-size: 40px;
font: bolder;
text-align: left

}
.row {
background-color: black;
color: white;
align-content: inherit;
width: 100%;
text-align: right;

}
.row1 {
width: 100%;
background-color: yellow;
height: 5px;

}
.row2 {
width: 100%;
background-color: grey;
align-content: inherit;
text-align: center;
font-size: 35px;
}
.img{
display: flex;
align-content: flex-start
}
.box {
display: flex;
align-content: flex-end;
}
.row3 {
width: 100%;
background-color: whitesmoke;
display: inline-block;
}
s{
color: whitesmoke;
}
.underline {
color: yellow;

}
.col1 {
display: flex;
align-content: flex-start;
}
.col2 {
display: flex;
align-content: center;
}
.col3 {
display: flex;
align-content: flex-end
}
.row4 {
background-color: black;
color: white;
width: 100%;
}
66 changes: 66 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<section>
<link rel="stylesheet" href="dsm.css">
<title>Startup Matchmaker</title>
</section>
</head>
<body>

<section class="row">
<nav>
<div class="header">Startup Matchmaker</div>
<a class="bold">FIND DEVELOPERS</a>
<a class="bold">FIND DESIGNERS</a>
<a>How it Works</a>
<a>Our Team</a>
<a>Blog</a>
</nav>
</section>
<section>
<div class="row1"></div>
</section>
<section>
<div class="flex-container"></div>
</section>
<section>
<nav>
<div class="row2">Because two brains <s>taste</s> <span class="underline">are</span>better than one.</div>
</nav>
</section>
<section>
<img src="images/coworking.jpg" alt="">
<div class="box">
<span>Meet You Match</span>
<p>Have a great idea for a product, but need help making it a reality? We're here to help Startup Satchmakers is the best place for designers and developers to find each other.</p>
<input type="submit" value="CREATE A PROFILE">
</div>

</section>
<section class="row3">
<section class="col1">
<span> Create a Profile</span>
<p>Are you a designer? Developer? Put yourself out there so that others can find you!</p>
<input type="submit" value="SIGN UP NOW"
<section class="col2">
<span> Find a Developer</span>
<p>Looking for a fantastic developer to work with on the next big thing? Look no further</p>
<input type="submit" value="START YOUR SEARCH"
<section class="col3">
<span>Find a Designer</span>
<p>Need someone who can make a product intuitive and appealing? Get Ready</p>
<input type="submit" value="START YOUR SEARCH"
</section>
<section>
<section class="row4">
<div> 2013 Startup Matchmaker. Made in NY</div>
</section>






</body>
</html>