Skip to content
Open
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
156 changes: 99 additions & 57 deletions about.html
Original file line number Diff line number Diff line change
@@ -1,64 +1,105 @@
<!doctype html>
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8">
<head>
<meta charset="utf-8" />

<title>Sprint Challenge - About</title>
<title>Sprint Challenge - About</title>

<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link
href="https://fonts.googleapis.com/css?family=Roboto|Rubik"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/index.css" />
</head>

</head>

<body>
<body>
<div class="container about-page">

About

Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.


<img src="img/about-plan.png" alt="strategy">

Strategy

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More



<img src="img/about-working.png" alt="strategy">

How We Work

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More



<img src="img/about-office.png" alt="strategy">

Places We Work

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More

<img src="img/about-meeting.png" alt="strategy">

Collaboration

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More

Let's Work Together
<!--my navigation/ here i include the code for the navigation-->
<nav class="menu">
<div class="logo">
<img src="img/lambda-black.png" alt="Lambda Logo" />
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</div>
</nav>

<!--This is a code for the background picture under navigation menu-->
<section id="under-nav"></section>

<!--this is a code for the text under the background picture, named About-->
<div class="text-about">
<h2>About</h2>
<p>
Leverage agile frameworks to provide a robust synopsis for high level
overviews. Iterative approaches to corporate strategy foster
collaborative thinking to further the overall value proposition.
Organically grow the holistic world view of disruptive innovation via
workplace diversity and empowerment.
</p>
</div>

<!--start section. This is a code including the pictures in the middle of the page -->
<section class="picture-container">
<div class="stratigic">
<img src="img/about-plan.png" alt="strategy" />
<h2>Strategy</h2>
<p>
Iterative approaches to corporate strategy foster collaborative
thinking to further the overall value proposition.
</p>
<button>Learn More</button>
</div>

<div class="working">
<img src="img/about-working.png" alt="strategy" />
<h2>How We Work</h2>
<p>
Iterative approaches to corporate strategy foster collaborative
thinking to further the overall value proposition.
</p>
<button>Learn More</button>
</div>

<div class="Working-places">
<img src="img/about-office.png" alt="strategy" />
<h2>Places We Work</h2>
<p>
Iterative approaches to corporate strategy foster collaborative
thinking to further the overall value proposition.
</p>
<button>Learn More</button>
</div>

<div class="collaborating">
<img src="img/about-meeting.png" alt="strategy" />
<h2>Collaboration</h2>
<p>
Iterative approaches to corporate strategy foster collaborative
thinking to further the overall value proposition. Learn More
</p>
<button>Learn More</button>
</div>
</section>
<!-- end of section-->

<!--This is the last text container in the page-->
<div class="last-container">
<h2>Let's Work Together!</h2>
<p>
Leverage agile frameworks to provide a robust synopsis for high level
overviews. Iterative approaches to corporate strategy foster
collaborative thinking to further the overall value proposition.
Organically grow the holistic world view of disruptive innovation via
workplace diversity and empowerment.
</p>
</div>

Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.

<footer>
<nav>
<a href="index.html">Home</a>
Expand All @@ -68,6 +109,7 @@
<a href="#">Contact</a>
</nav>
</footer>
</div><!-- container -->
</body>
</html>
</div>
<!-- container -->
</body>
</html>
Loading