-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (81 loc) · 5.12 KB
/
index.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="images/websiteLogo.png">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<title>EMMA LIM</title>
</head>
<body>
<nav>
<div class="navBar">
<div id="logo">
<h3 style="font-size: 45px;"><a href="index.html">EMMA LIM</a></h3>
<div class="dropdown">
<button class="navButton" onclick="toggleNav()"><img id="mobileNav" src="images/navButton.png" style="width: 50px;"></button>
<div id="dropdownMenu">
<div id="menuItem"><a id="dropdownContent" href="index.html" style="text-decoration:underline;">WORK</a></div>
<div id="menuItem"><a id="dropdownContent" href="about.html">ABOUT</a></div>
</div>
</div>
</div>
<div id="navItems">
<div id="page"><a href="index.html" style="border-bottom: solid;">WORK</a></div>
<div id="page"><a href="about.html">ABOUT</a></div>
</div>
</div>
</nav>
<main class="content">
<h1 style="text-align:center">WELCOME</h1>
<div class="flex-container" id="indexPage">
<div class="col-4" id="indexPic">
<img id="aboutPic" src="images/about/EmmaLim.JPG" alt="photo of Emma Lim" style="max-width: 65%; border-radius: 50%">
</div>
<div class="col-11" id="indexText">
<h3>Hi, I'm Emma</h3>
<p>I’m currently a senior at Wellesley College majoring in Computer Science and minoring in Korean. I have a deep passion for creating meaningful products.</p>
<a class="social-icons" href="https://www.linkedin.com/in/lim-emma" target="_blank" style="padding-right:10px"><img src="images/footer/linkedin.png" style="max-width: 25px" alt="github"></a>
<a class="social-icons" href="https://github.com/emmalim" target="_blank"><img src="images/footer/github.png" style="max-width: 25px" alt="github"></a>
</div>
</div>
<!--code for normal project card-->
<div class="flex-container" id="projCard">
<div class="thumbnail" id="projPic">
<a href="wendi.html">
<img id="gallery" src="images/work/wendi/wendiPic2Large.png" alt="WENDI screen displayed on Macbook">
</a>
</div>
<div class="col-6" id="projText">
<a href="wendi.html"><h3>WENDI</h3></a>
<p>Web app project developed to help streamline the housing selection process for Wellesley students.</p>
</div>
</div>
<!--code for project card with text on left and pic on right-->
<div class="flex-container" id="projCard">
<div class="thumbnail" id="projPicMobile" style="float: left;">
<a href="welleseats.html">
<img id="gallery" src="images/work/welleseats/welleseats0.png" alt="WENDI screen displayed on Macbook">
</a>
</div>
<div class="col-6" id="projText" style="float: right;">
<a href="welleseats.html"><h3>WellesEats</h3></a>
<p>Mobile app project designed to keep Wellesley students informed about meals offered in the dining halls.</p>
</div>
<div class="thumbnail" id="projPicDesktop" style="float: left;">
<a href="welleseats.html">
<img id="gallery" src="images/work/welleseats/welleseats0.png" alt="WENDI screen displayed on Macbook">
</a>
</div>
</div>
<!--footer begins-->
<div class="footer">
<p>Made by Emma Lim.</p>
<a class="social-icons" href="https://www.linkedin.com/in/lim-emma" target="_blank" style="padding-right:10px"><img src="images/footer/linkedin.png" style="max-width: 25px" alt="github"></a>
<a class="social-icons" href="https://github.com/emmalim" target="_blank"><img src="images/footer/github.png" style="max-width: 25px" alt="github"></a>
</div>
</main>
<script src="javascript/portfolio.js"></script>
</body>
</html>