-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (64 loc) · 3.5 KB
/
index.html
File metadata and controls
71 lines (64 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta name="author" content="Your name">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Cindy Wang's professional website">
<title>Cindy Wang</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=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./static/style.css">
<script src="./static/script.js" defer></script>
<script
src="https://code.jquery.com/jquery-3.7.1.js"
integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="
crossorigin="anonymous"></script>
</head>
<body onload="addYear()">
<header>
<h1 id="webname">Cindy Wang</h1>
<nav>
<a href="index.html">about</a>
<a href="views/cv.html">resume</a>
<a href="views/fun.html">play</a>
<a href="views/contact.html">contact</a>
</nav>
</header>
<div class="main">
<h2 id="greeting">Hi, my name is Cindy</h2>
<img src="static/myPicture.jpg" alt="My Picture" width="400" height="400">
<p id ="short">Hi I’m Cindy Wang and welcome to my personal website! I am a
current undergraduate freshman at Carnegie Mellon University studying
Information Systems, hoping to double major in Artificial Intelligence
and minor in Human Computer Interactions. I was born in Beijing, China,
but grew up in Cupertino, California. Being in the heart of Silicon Valley,
I am passionate and curious about the power of technology to shape human lives
and the future. </p>
<p id="full">Hi I’m Cindy Wang and welcome to my personal website! I am a
current undergraduate freshman at Carnegie Mellon University studying
Information Systems, hoping to double major in Artificial Intelligence
and minor in Human Computer Interactions. I was born in Beijing, China,
but grew up in Cupertino, California. Being in the heart of Silicon Valley,
I am passionate and curious about the power of technology to shape human lives
and the future. Outside of academics, I enjoy playing volleyball, getting boba,
playing cards with my friends, and watching mystery-solving shows. I am an extroverted
person that loves to meet new people and take on challenges, such as participating in
hackathons and innovating solutions in research. In the future, I hope to explore the
intersection of cybersecurity and artificial intelligence, such as using large language
models to protect digital privacy and defend against cyber threats. Feel free to reach out
because I would love to connect and explore new opportunities with like-minded individuals.
</p>
<button id="readMore">Read More</button>
<button id="readLess">Read Less</button>
<p><a href="template.html">View template.html (lab6) </a></p>
</div>
<footer>
<p id="copyYear" style="display: inline;"></p>
<p style="display:inline">Designed and coded by Cindy Wang</p>
</footer>
</body>
</html>