-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (56 loc) · 2.36 KB
/
index.html
File metadata and controls
58 lines (56 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Yuan - Portfolio</title>
<link rel="icon" type="image/x-icon" href="/resources/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<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=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles/style.css">
</head>
<body>
<div id="page-container">
<div id="content-wrap">
<!-- Header. Defined in header.html. Change there then copy changes to all pages. -->
<header>
<h1>Daniel Yuan</h1>
<p>Software Engineer</p>
</header>
<nav>
<ul>
<li class="logo">
<a href="/index.html">
<img src="/resources/home.png" alt="Logo">
</a>
</li>
<li><a href="/pages/about.html">About</a></li>
<li><a href="/pages/experience.html">Experience</a></li>
<li><a href="/pages/resume.html">Resume</a></li>
<li><a href="/pages/contact.html">Contact</a></li>
</ul>
</nav>
<!-- End header. -->
<main>
<section class="portrait-section">
<img class="portrait" src="/resources/portrait.jpg" alt="Portrait of Yourself">
</section>
<p>Welcome to my website! Feel free to click on the sections above to learn more about me and my projects.</p>
<div class="social-icons">
<a href="https://github.com/dyuan2001/" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/dyuan01/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
</div>
</main>
</div>
<!-- Footer. Defined in footer.html. Change there then copy changes to all pages. -->
<footer>
<div class="footer-container">
<p>© 2023 Daniel Yuan</p>
</div>
</footer>
<!-- End footer. -->
</div>
</body>
</html>