Skip to content
This repository was archived by the owner on Aug 26, 2022. It is now read-only.
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bootstrap lab
# Bootstrap lab BUT MY VERSION


## Project 1: Build a responsive cookie store web page
Expand Down
35 changes: 35 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -1 +1,36 @@
img {
border-radius: 50%;
justify-content: space-between;
display: flex;
white-space: normal;

}
.background{
background-size: 800px 600px;
}


* {
box-sizing: border-box;
text-align: center;
}

.col {
float: right;
width: 66.66%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row row-cols-4::after {
content: "";
clear: both;
display: table;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */

@media (min-width: 576px) {
.col {
width: 100%;
} }

104 changes: 75 additions & 29 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,47 +1,93 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
<title>Cookie Store</title>
</head>
<body>
<style>


</style>
<body>

<div class ="background" style="background-image: url('img/milkbg.jpg');" width=300 height=500>
<h1>Cookie Store</h1>

<p>Buy our awesome cookies. All proceeds go to charity!</p>

</div>
<h2>The Cookies</h2>

<h3>Thin Mint Cookies</h3>
<p>Tasty mint chocolate cookies</p>
<img src="img/mint.png">
<div class="container">
<div class="row row-cols-4">

<li>
<div class="col">
<h3>Thin Mint Cookies</h3>
<p>Tasty mint chocolate cookies</p>
<a>
<img src="img/mint.png" class= "img-fluid"/>
</a>
</div>
</li>

<h3>Peanut Butter Cookies</h3>
<li>
<div class="col">
<h3>Peanut Butter Cookies</h3>
<p>Yummy peanut buttery goodness!</p>
<img src="img/peanut.png">

<h3>Short Bread Cookies</h3>
<p>Santa's favorite classic.</p>
<img src="img/shortbread.png">

<h3>Smore's Cookies</h3>
<p>Camp fire favorite!</p>
<img src="img/smores.png">

<h2>About us</h2>
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>

<h2>Contact us</h2>
<div>
100 Broadway Avenue,<br>
New York, NY 10001 <br>
(212) 555-1234
<a>
<img src="img/peanut.png"class= "img-fluid"/>
</a>
</div>
</li>
<li>
<div class="col">
<h3>Short Bread Cookies</h3>
<p>Santa's favorite classic.</p>
<a>
<img src="img/shortbread.png" class= "img-fluid"/>
</a>
</div>
</li>
<li>
<div class="col">
<h3>Smore's Cookies</h3>
<p>Camp fire favorite!</p>
<a>
<img src="img/smores.png" class= "img-fluid"/>
</a>
</div>
</li>

</div>
</div>


<div class="row" style="background-color: gray;">

<div class="col-6"><img src="img/cmonster.png" class= "img-fluid"/></div>
<div class="col-6"> <h2>About us</h2>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
</div>
<div class="row" style="background-color: #007bff;">
<div class="col-12"> <h2>Contact us</h2>
100 Broadway Avenue,<br>
New York, NY 10001 <br>
(212) 555-1234</div>
</div>
</div>
</div>




</body>
</html>
67 changes: 67 additions & 0 deletions project/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
text-decoration: #4700cc;
}

.footer {
background-color: #0099cc;
color: #ffffff;
text-align: center;
font-size: 12px;
padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
width: 100%;
}

@media only screen and (min-width: 600px) {
/* For tablets: */
.col-s-1 {width: 8.33%;}
.col-s-2 {width: 16.66%;}
.col-s-3 {width: 25%;}
.col-s-4 {width: 33.33%;}
.col-s-5 {width: 41.66%;}
.col-s-6 {width: 50%;}
.col-s-7 {width: 58.33%;}
.col-s-8 {width: 66.66%;}
.col-s-9 {width: 75%;}
.col-s-10 {width: 83.33%;}
.col-s-11 {width: 91.66%;}
.col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}

/*.aside {
background-color: #33b5e5;
padding: 15px;
color: #ffffff;
text-align: center;
font-size: 14px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}*/
* {
box-sizing: border-box;
}
.item{
text-align: justify;
}
Binary file added project/img/Boubacar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
158 changes: 158 additions & 0 deletions project/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boubacar Tapsoba's Porfolio</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">

<!--Build a Professional Porfolio Website. Follow the following criteria
Use HTML5, CSS, Bootstrap (optional)
You can use existing themes (i.e. http://bootswatch.com/)
For the content:
Introduce yourself
Post projects you have done
Education/Professional Experience, Relevant Skills
List any technology or blog links you recommend
Include at least one image (project related, you, or related picture)
Optional: Post a "blog" entry about a technology you have used, or school topic-->

</head>

<body>
<header>
<div style="text-align: center;">
<img src="img/Boubacar.jpg" alt="" width="300" height="300">
<p>Boubacar Tapsoba</p>
</div>

<nav class="nav">
<ul class="nav__list">
<li class="nav_item"> <a href="#Presentation" class="nav__link">Presentation</a> </li>
<li class="nav_item"> <a href="#Education" class="nav__link">Education</a> </li>
<li class="nav_item"> <a href="#Technical Skill" class="nav__link">Technical Skills</a> </li>
<li class="nav_item"> <a href="#Relevant Experience" class="nav__link">Relevant Experience</a> </li>
</ul>
</nav>
</header>



<div class="container">
<div class="row">
<div class="col">
<!-- Presentation -->
<section>

<div class="item">
<h1>Presentation</h1>
<p>🍻 Cheers, I am
<strong>Boubacar</strong>
,<br>
a student at CUNY Lehman College

, currently living in New York. I
've worked with
<strong> delivery compagny</strong>
like
<a href="https://about.grubhub.com/about-us/what-is-grubhub/default.aspx"
data-text="Grubhub" style="">
Grubhub </a>and
<a href="https://www.doordash.com/" data-text="Doordash" style="">
Doordash </a>
</p>
</div>
</section>
</div>
<div class="col">
<!-- Education -->
<section>
<div class="item">
<h1>EDUCATION</h1>
<p>
<ul>
<li>Lehman College - City University of New York (CUNY) Bronx, NY
Bachelor of Science in Computer Science <br>Expected December 2021
<br>Relevant Coursework: Discrete Structures and Algorithms, C++ Programming, Database
Fundamentals, Java, Data Structures
</li>
<li> University Of Ouaga 2 Burkina Faso
<br>License in Macroeconomics and Development Management June 2014
</li>
</ul>


</p>
</div>
</section>
</div>
<div class="w-100"></div>
<div class="col">
<!--Technical Skills-->
<section>
<div class="item">
<h1>TECHNICAL SKILLS </h1>
<p>
<ul>
<li>Programming : C++, HTML, CSS, Python, JavaScript, Java </li>
<li>Technologies : Xcode, Git/GitHub, Eclipse, Linux </li>
<li>PROJECTS
Class Scheduling ,April 2020
<ul>
<li>Implemented a webpage in a team of two that schedules sections of courses for
Computer Information Systems department. </li>
<li>Accomplished the project in multiple phases (planning, system analysis and
requirement, system design, development, testing, implementation)</li>
<li>Developed the user interface using HTML, CSS, and PHP to create the scheduling
which
assigns room and time to a section of a course. </li>
</ul>
</li>
</ul>

</p>
</div>
</section>
</div>
<div class="col">
<!--Relevant Experience-->
<section>
<div class="item">
<h1>RELEVANT EXPERIENCE </h1>
<p>

CUNY Tech Prep New York, NY
<br>Fellow, Software Development June 2021 – Present
<br>Learn in-demand technologies like React, Node + Express, and PostgreSQL as well as
industry
best practices for design, implementation, and deployment such as MVC, version control with
Git/GitHub, agile & Scrum with Trello and Slack, test driven development, and CI/CD
</p>
</div>
</section>
</div>
</div>
</div>




<!-- </div>
</div>
</div>-->
<footer>
<div class="footer">
Contact:<a href="boubacartapsoba78@gmail.com" class="footer-link"> boubacartapsoba78@gmail.com</a>
<a href="https://www.linkedin.com/in/boubacar-tapsoba-2a7784209">LinkedIn</a>
<a href="https://github.com/Boubacar75">Github</a>

</div>
</footer>

</body>

</html>