-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
97 lines (83 loc) · 2.75 KB
/
about.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About us</title>
</head>
<body>
<header>
<!-- Header title -->
<h1>About us</h1>
<!--Navigation Section-->
<nav>
<ul>
<li class="current-page"><a href="index.html">Home</a></li>
<!--- <li><a href="resources.html">Resources</a></li> add after we create a resources.html-->
</ul>
</nav>
</header>
<main>
<!--Header 2 for next section-->
<h2>About Us</h2>
</main>
<style>
body {
font-family: 'Georgia', serif;
margin: 20px;
}
.person {
margin-bottom: 20px;
}
</style>
</head>
<body>
<!--1st person-->
<div class="Geena Limfat">
<img src="/Photos/about/geena.jpeg" width="403" height="537">
<h2>Geena Limfat</h2>
<p>Junior | Sixth | Cognitive Science; Machine Learning & Computer Science Minor </p>
<p>Favorite beach activity: Eating food from local vendors</p>
<p>Career goal: Still exploring!</p>
<a href="url">LinkedIn</a>
</div>
<!-- 2nd person -->
<div class="Faith Rivera">
<img src="/Photos/about/faith.jpeg" width="537" height="403">
<h2>Faith Rivera</h2>
<p>Junior | Sixth | Computer Science</p>
<p>Favorite beach activity: Watching sunset while eating Taco Stand</p>
<p>Career goal: SWE or Computer Graphics Engineer</p>
<a href="https://www.linkedin.com/in/faithriveraucsd/">LinkedIn</a>
</div>
<!-- 3rd person -->
<div class="Shrieyaa Sekar-jayanthi">
<img src="/Photos/about/shrieyaa.jpeg" width="403" height="537">
<h2>Shrieyaa Sekar-jayanthi</h2>
<p>Junior | Seventh | Cognitive Science; Machine Learning & Computer Science Minor</p>
<p>Favorite beach activity: Building sandcastles with my sister and grandad</p>
<p>Future goal: Future goal is to stay happy and always work harder</p>
<a href="https://www.linkedin.com/in/faithriveraucsd/">LinkedIn</a>
</div>
<!-- 4th person -->
<div class="Sophie Smith">
<img src="/Photos/about/sophie.jpeg" width="403" height="537">
<h2>Sophie Smith</h2>
<p>Junior | COLLEGE | Math Computer Science</p>
<p>Favorite beach activity: Going to the beach with my grandparents</p>
<p>Career goal: Software Engineer</p>
<a href="url">LinkedIn</a>
</div>
<!-- 5th person -->
<div class="Chi Zhang">
<img src="/Photos/about/chi.jpeg" width="537" height="403">
<h2>Chi Zhang</h2>
<p> Senior | Revelle | Computer Engineering & Cognitive Science </p>
<p> Favorite beach activity: Watch sunrise at La Jolla Cove</p>
<p> Career goal: Become a software engineer</p>
<a href="url">LinkedIn</a>
</div>
</body>
</html>
</body>
</html>