-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
85 lines (75 loc) · 3.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Home</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- Link to your updated CSS file -->
<link rel="stylesheet" href="styles.css" />
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
</head>
<body class="about-page">
<!-- Navigation Bar -->
<nav>
<div class="hamburger">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<ul class="nav-menu">
<li><a href="index.html" class="active">About</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publication</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
<!-- Main Content -->
<main>
<div class="container">
<!-- Left Side -->
<div class="left-column">
<img src="images/image.png" alt="Your Name" class="profile-pic">
<h2>Your Name</h2>
<p>PhD Scholar @ University</p>
<div class="social-links">
<a href="https://scholar.google.com" target="_blank">
<img src="images/google-scholar.svg" alt="Google Scholar" class="social-icon">
</a>
<a href="https://www.linkedin.com" target="_blank">
<img src="images/linkedin.svg" alt="LinkedIn" class="social-icon">
</a>
<a href="mailto:[email protected]" target="_blank">
<img src="images/email.svg" alt="Email" class="social-icon">
</a>
</div>
</div>
<!-- Right Side -->
<div class="right-column">
<p>
Here you can write about your current position and the department or organization you are affiliated with. Mention your research interests, specifying the fields or areas of study you focus on. You can also describe any specific topics or themes you are passionate about exploring within your research.
</p>
<p>
In this section, you can elaborate on your involvement in various research projects, highlighting any collaborative work or interdisciplinary efforts. Describe your research goals or the outcomes you aim to achieve through your work. Additionally, feel free to include any relevant activities or interests outside of academia that support or enhance your research, such as community engagement or outreach initiatives.
</p>
<h3>Education</h3>
<ul>
<li>Masters : University2</li><br>
<li>Bachelors: University3</li>
</ul>
</div>
</div>
</main>
<!-- Footer -->
<footer>
<p>© 2024 Your Name, a fork of
<a href="https://github.com/muhammedrashidx/ScholarSite" target="_blank" style="text-decoration: none; color: #b8aaaa; text-decoration: underline;">
ScholarSite
</a>
</p>
</footer>
<!-- Link to your updated JavaScript file -->
<script src="script.js"></script>
</body>
</html>