-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresearch.html
61 lines (46 loc) · 1.73 KB
/
research.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<title>Research</title>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="about.html">About Me</a>
</nav>
<main>
<div id="main-content">
<section>
<!-- <h2>My Projects</h2> -->
<!-- Project 1 -->
<div class="project">
<h3>Project Title 1</h3>
<p>Description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut in nulla ac justo
ultrices finibus.</p>
<a href="project1.html" class="project-link">Learn More</a>
</div>
<!-- Project 2 -->
<div class="project">
<h3>Project Title 2</h3>
<p>Description: Fusce tristique faucibus nunc, in venenatis ex volutpat eu. Sed nec libero nec
lectus luctus malesuada.</p>
<a href="project2.html" class="project-link">Learn More</a>
</div>
<!-- Add more projects here using the same structure -->
</section>
</div>
</main>
<footer>
<a class="icon-link" target="_blank" href="https://github.com/shunzi-work">
<image src="img/icons/github-mark.svg" class="footer-icon" />
</a>
<image src="img/icons/email.svg" class="footer-icon" />
</a>
</footer>
</body>
</html>