-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
134 lines (118 loc) · 5.17 KB
/
Copy pathtemplate.html
File metadata and controls
134 lines (118 loc) · 5.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rajat's Portfolio Website</title>
<!-- cloudflayer css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"
integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous" />
<!-- font awesome link -->
<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=Source+Code+Pro:wght@600&family=Source+Sans+Pro:wght@200&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<body>
<!-- navigation bar -->
<header>
<div class="logo">
<a href="/index.html#home">
<img src="/img/logo.png" alt="">
</a>
</div>
<button id="Toggle-btn" class="nav-toggle" aria-label="toggle navigation">
<span class="hamburgar"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="skills.html" class="nav__link">My Skills</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About me</a>
</li>
<li class="nav__item">
<a href="#work" class="nav__link">My Projects</a>
</li>
<li class="nav__item">
<a href="achivements.html" class="nav__link">My Achivements</a>
</li>
</ul>
</nav>
</header>
<section class="intro">
<h1 class="section__title section__title--intro">
Title of <strong>Project</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">
Subtitle
</p>
<img src="" alt="" class="intro__img">
</section>
<div class="portfolio-item-individual">
<p>Description</p>
<img src="/img/bg.jpg" alt="">
<p></p>
<p></p>
</div>
<div class="work__links">
<a href="https://itsrajatkumar.github.io/tictactoe/" class="btn work__links--deploy" target="_blank">View
Deployment</a>
<a href="https://www.github.com/itsrajatkumar/tictactoe/" class="btn work__links--source" target="_blank">View
Source-Code</a>
</div>
<!-- footer -->
<footer class="footer">
<a href="mailto:rajat.kumar2771@gmail.com" class="footer__link">Rajat.kumar2771@gmail.com</a>
<ul class="social-list">
<li class="social-list__item">
<a href="https://www.linkedin.com/in/thisisrajatkumar" class="social-list__link" target="_blank">
<i class="fab fa-2x fa-linkedin"></i>
<span>LinkedIn</span>
</a>
</li>
<li class="social-list__item">
<a href="https://www.github.com/itsrajatkumar" class="social-list__link" target="_blank">
<i class="fab fa-2x fa-github"></i>
<span>GitHub</span>
</a>
</li>
<li class="social-list__item">
<a href="https://www.instagram.com/thisisrajatkumar" class="social-list__link" target="_blank">
<i class="fab fa-2x fa-instagram"></i>
<span>Instagram</span>
</a>
</li>
<li class="social-list__item">
<a href="https://www.twitter.com/iam_RKPrajapati" class="social-list__link" target="_blank">
<i class="fab fa-2x fa-twitter"></i>
<span>Twitter</span>
</a>
</li>
<li class="social-list__item">
<a href="https://www.hackerrank.com/thisisrajatkumar" class="social-list__link" target="_blank">
<i class="fab fa-2x fa-hackerrank"></i>
<span>HackerRank</span>
</a>
</li>
</li>
<li class="social-list__item">
<a href="https://www.codechef.com/users/rajat_kp" class="social-list__link" target="_blank">
<i class="fas fa-2x fa-closed-captioning"></i>
<span>CodeChef</span>
</a>
</li>
</ul>
</footer>
<script src="../js/script.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7228040220442735"
crossorigin="anonymous"></script>
</body>
</html>