-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopers.html
More file actions
64 lines (61 loc) · 4.94 KB
/
Copy pathdevelopers.html
File metadata and controls
64 lines (61 loc) · 4.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!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">
<link rel="icon" type="image/x-icon" href="resources/images/favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="./resources/css/style.css">
<title>TaskIt | Developers</title>
</head>
<body>
<div class="row p-0 m-0 min-vh-100">
<header class="row col-xl-2 p-0 pt-5 navigation align-items-start">
<nav class="navbar navbar-dark p-0">
<div class="logo flex_col d-flex justify-content-center align-items-center w-100">
<img src="resources/images/TaskItLogo.svg" alt="TaskIT logo" width="80px">
<p>TASK<span>IT</span></p>
</div>
<ul class="navbar-nav d-flex w-100 gap-4 ">
<li class="nav-item "><a href="/" class="nav-link ps-5 py-lg-3"><i class="bi bi-grid-1x2-fill me-3"></i> DASHBOARD</a></li>
<li class="nav-item "><a href="developers.html" class="nav-link ps-5 py-lg-3 current border-end border-5"><i class="bi bi-pc-display me-3"></i> DEVELOPERS</a></li>
<li class="nav-item "><a href="insights.html" class="nav-link ps-5 py-lg-3"><i class="bi bi-easel2-fill me-3"></i> INSIGHTS</a></li>
</ul>
</nav>
<div class="align-self-end text-secondary text-center">
<p>TaskIt © MIT Licensed 2022</p>
</div>
</header>
<main class="col-lg-10 container mt-5">
<div class="row align-items-stretch justify-content-center gap-3 mt-5">
<h1 class="col-lg-10 mb-5 dev_title">Meet the <span class="meet">Developers...</span></h1>
<div class="meet_content col-lg-5 d-grid ivan">
<h2 class="developer"> Ivan R. <span>Calvo</span></h2>
<p class="info fw-light"> I am a dedicated web and software developer from Dallas, TX, I feel more attracted to back-end logic and critical thinking, however, front-end engineering helps me to stay motivated due to the fact that building user experience and interfaces is visually more rewarding. This project is one of my biggest accomplishments, and team working with Janice on designing, planning, and developing TaskIt allowed me to experience how a product can be developed effectively using agile methodology. This App was built with a lot of passion for people such as ourselves that are eager to have better time management and are willing to stay focused on a goal.
</p>
<div class="align-self-end my-3">
<a href="https://github.com/IvanARodriguez" target="_blank" class="fs-3 m-2 text-orange developer_link"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/ivanrodriguezcalvo/" target="_blank" class="fs-3 m-2 text-orange developer_link"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="meet_content col-lg-5 d-grid janice">
<h2 class="developer"> Janice <span>Rodriguez</span></h2>
<p class="info fw-light align-self-start">
I’m a developer from NYC, who's passionate about web design and user experience. I'm excited about science & how things work and ended up finding myself intrigued
with programming. I have 10+ smaller projects & this project being my biggest so far with over 30+ hours of planning, implementing, debugging, and reviewing. Taking on
this project was a wonderful challenging experience, especially working with my partner Ivan who has been very dedicated, passionate and knowledgeable. We gained practice,
tips and tricks and learned along the way using JavaScript to add interactivity to our site. I hope this site gives you a simplicity feel and a smooth interaction. We encourage
feedback and ideas that can help improve our overall user experience, So feel free to get in touch!
</p>
<div class="align-self-end my-3">
<a href="https://github.com/rodriguezjaniece08" target="_blank" class="fs-3 m-2 text-orange developer_link"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/janice-rodriguez/" target="_blank" class="fs-3 m-2 text-orange developer_link"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</main>
</div>
</body>
</html>