Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Developers page for the chatbot #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
106 changes: 106 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: sans-serif;
}

.nav {
background-color: #1F2021;
overflow: hidden;
width: 100%;
padding: 25px 35px;
}

.nav a {
float: right;
color: #ffffff;
display: block;
text-align: center;
padding: 17px 20px;
text-decoration: none;
font-size: 15px;
background-color: rgb(8, 8, 8);
}

.nav a:hover {
background: #1F2021;
color: #06C695;
}

.nav .panicon {
float: left;
padding: 17px 20px;
}

.nav .chatwithpan {
border: 2px solid #06C695;
box-sizing: border-box;
}

.nav a.active {
background-color: #06C695;
color: white;
}

h1 {
text-align: center;
font-family: sans-serif;
}
first-letter {
color: red;
}
second-letter {
color: yellow;
}
third-letter {
color:green;
}

html {
box-sizing: border-box;
}

*, *:before, *:after {
box-sizing: inherit;
}

.column {
float: left;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
}

@media screen and (max-width: 1024px) {
.column {
width: 100%;
display: block;
}
.nav a {
width: 100%;
display: block;
}
}

.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.container {
padding: 0 16px;
}

.container::after, .row::after {
content: "";
clear: both;
display: table;
}

.title {
color: grey;
}
img {
border-radius: 50%;
}

70 changes: 70 additions & 0 deletions developers.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

</head>
<body>
<!--nagivation bar container-->
<div class="nav">
<img class="panicon" src="https://res.cloudinary.com/adeleke-speed/image/upload/v1569406139/panicon_ba4m9j.png" alt="pan chatbot logo">
<a class="chatwithpan" href="#chatwithpan">Chat with Pan</a>
<a class="termsofuse" href="#termsofuse">Terms of Use</a>
<a class="active" href="#developers">Developers</a>
<a class="faqs" href="#faqs">FAQS</a>
<a class="chatbot" href="#chatbot">Chatbot</a>
<a class="home" href="#home">Home</a>
</div>

<br><br>
<h1>Meet The <first-letter>P</first-letter>
<second-letter>A</second-letter>
<third-letter>N</third-letter> Team</h1><br><br><br><br>
<div class="row">
<div class="column">
<div class="card">
<img src="images/smiley1.jpg" alt="John" style="width:100%">
<div class="container">
<h2>John Doe</h2><br>
<p class="title">Full Stack Developer & Team Lead</p><br>
<p>Mentor, Facilitator and Educator passionate about technology</p><br>
<p><i class="fa fa-twitter"></i> @johndoe</p>
<i class="fa fa-github"></i> @johndoecodes

</div>
</div>
</div>

<div class="column">
<div class="card">
<img src="images/smiley2.jpg" alt="Jim" style="width:100%">
<div class="container">
<h2>Jim Reeves</h2><br>
<p class="title">Mobile Developer</p><br>
<p>Robots are coming, we should be of good example</p><br><br>
<p><i class="fa fa-twitter"></i> @jimreeves_</p>
<i class="fa fa-github"></i> @jimjim

</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/smiley3.jpg" alt="Jane" style="width:100%">
<div class="container">
<h2>Jane Doe</h2><br>
<p class="title">Designer</p><br>
<p>A dynamic and creative artist</p><br><br>
<p><i class="fa fa-twitter"></i> @janedoe</p>
<i class="fa fa-github"></i> @janedoedesign
</div>
</div>
</div>
</div>
</body>
</html>
Binary file added images/smiley1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/smiley2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/smiley3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.