-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
81 lines (71 loc) · 3.96 KB
/
about.html
File metadata and controls
81 lines (71 loc) · 3.96 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projectdoro</title>
<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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Ms+Madi&display=swap" rel="stylesheet">
<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=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- // HEADER / INTRO // -->
<header class="aboutHeader">
<nav class="bg-dark">
<ul class="list-reset nav-list">
<li><a href="index.html">Home</a>/</li>
<li><a href="#about">About</a>/</li>
<li><a href="projects.html">Projects</a>/</li>
<li><a href="workspace.html">Workspace</a></li>
</ul>
</nav>
<hgroup>
<h1 class="headline">About</h1>
</hgroup>
</header>
<main>
<!-- // ABOUT // -->
<section id="about" class="bg-light">
<div class="content-about-wrap">
<section>
<div class="project-ind-details">
<h3 class="large_header">Our Mission</h3>
<p>Computer science has become an incredibly fast paced environment and it can feel hard to keep up with what the current times expect of you especially as a college student. Our goal is to provide a online workspace where computer science majors can find projects based on their own personal career goals to build their dream resume. ProjectDoro provides the tools for those passionate about computer science to stay relevant. </p>
</div>
</section>
</div>
</section><!-- end of ABOUT -->
<!-- // ABOUT // -->
<section id="about" class="bg-light">
<div class="content-proj-wrap">
<section class="project-ind-item">
<img srcset="images/ella-380mb.jpeg, images/ella-208px.jpg"
src="images/ella-380mb.jpeg"
alt="Image of the creator Ella Rohr sitting down with a black and white kitten on her knee.">
<div class="project-ind-details">
<h3 class="large_header">Meet the Creator</h3>
<p>Hey there, welcome to my website! I am a sophomore Computer Science and WRTC Major at James Madison University. I started ProjectDoro as part of a project in my Online Design class but it quickly turned into a passion project. I have been a long time user of pomodoro timers and have always wanted to create my dream online tool. One of the most pressing issues that I have run across as a computer science major is the struggle to find projects that will actually help boost my resume. I decided to create Projectdoro to make the process easier for all my peers. So I can share what I have learned in the hope that I can spark optimism and motivation in all computer science students! </p>
</div>
</section>
</div>
</section><!-- end of ABOUT -->
</main>
<!-- // FOOTER // -->
<footer id="contact" class="bg-footer">
<h2 class="headline-centered">Say hello!</h2>
<p>Email me at <a href="mailto:rohrec@dukes.jmu.edu">rohrec@dukes.jmu.edu</a></p>
<ul class="list-reset socials-list">
<li>
<a href="https://www.linkedin.com/in/ella-rohr-77b267267/?skipRedirect=true" target="_blank">
<img src="images/icon-linkedin.png" alt="LinkedIn profile">
</a>
</li>
</ul>
<p class="copyright">© 2025 by Ella Rohr</p>
</footer>
</body>
</html>