-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
55 lines (55 loc) · 2.46 KB
/
portfolio.html
File metadata and controls
55 lines (55 loc) · 2.46 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="portfoliostyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Karma&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="portfolio">
<div class="left-section">
<a href="index.html">
<div class="logo">
<h1>Phuntsho</h1>
</div>
</a>
<footer class="copyright">
<p>© 2023 Tshering Phuntsho</p>
</footer>
<img src="assets/python.png" alt="Python logo">
<p class="head">Automation project</p>
<div class="automation">
<pre>
With python programming language
i made automatic google form fill
up for outstation leave
</pre>
</div>
<a href="https://github.com/tsheringphuntsho18/PythonAutomation/blob/main/SWE_Tshering_Phuntsho_02230310.py" class="button" target="_blank">Click here for code</a>
</div>
<div class="right-section">
<nav class="navbar">
<ul>
<li><a href="aboutme.html"><i class="fas fa-user"></i> About Me</a></li>
<li><a href="portfolio.html" class="portfolio-button"><i class="fas fa-book"></i> Portfolio</a></li>
<li class="contact-icon"><a href="contact.html"><i class="fas fa-phone"></i> Contact</a></li>
</ul>
</nav>
<div class="toggle-container">
<input type="checkbox" id="custom-toggle" class="toggle-checkbox">
<label for="custom-toggle" class="toggle-label"></label>
</div>
<img src="assets/leetcode.png" alt="leetcode logo" class="leetcode-image">
<div class="leetcode">
<pre>
I have solved more than 20
leetcode problem as of now
</pre>
</div>
<a href="https://leetcode.com/tsheringphuntsho18/" class="profile" target="_blank">Leetcode prfile</a>
</div>
</div>
</body>
</html>