-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (58 loc) · 3.21 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
<!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>Pratik's Portfolio</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<nav class="navigation">
<div class="nav-brand">
<a href="/index.html"><img src="/Images/at.gif" alt="Pratik-logo"></a>
</div>
<ul class="nav-list">
<li class="nav-list-item"><a class="nav-links link-active" href="/index.html">Home</a></li>
<li class="nav-list-item"><a class="nav-links" href="/Projects.html">Projects</a></li>
<li class="nav-list-item"><a class="nav-links" href="/Blogs.html">Blog</a></li>
</ul>
</nav>
<header class="hero">
<img class = "hero-img" src="/Images/orange..svg" alt="Image not found">
<h1>Hello, I'm Pratik. I'm a <span class="span-text">Web Developer.</span></h1>
</header>
<section class="section section-about">
<h1>About Me.</h1>
<p>Hi there, My name is Pratik, I am a <span class="about">Web Developer </span> and a <span class="about">Programmer. </span> I am focused on building websites that are fast, responsive and also provide a good user experience. Currently I am working as an Associate Software Engineer at <span></span><a class="accenture" href="https://www.accenture.com/in-en">accenture</a></span>.</p>
</section>
<section class="section section-offwhite">
<h1>Technologies</h1>
<p>I am familiar with HTML, CSS, JavaScript, Git, React and Web Hosting and I am eager to learn more that this world of web has to offer. </p>
</section>
<section class="section">
<h1>Projects</h1>
<p>I like to showcase my work and thus, you can see my projects hosted online</p>
<div class="section-links">
<a href="/Projects.html"><button class="btn-primary">View projects</button></a>
</div>
</section>
<section class="section section-offwhite">
<h1>Blogs</h1>
<p>I am also working on some technical and non techincal blogs. I like to document my journey of learning.</p>
<div class="section-links">
<a href="/Blogs.html"><button class="btn-secondary">View blogs</button></a>
</div>
</section>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<footer class="footer ">
<h2>Get in touch </h2>
<ul>
<li class="footer-list-item"><a href="https://twitter.com/Prateek24675372" target="_blank"><ion-icon name="logo-twitter"></ion-icon></li>
<li class="footer-list-item"><a href="https://www.linkedin.com/in/pratik-dash-5a7217134/" target="_blank"><ion-icon name="logo-linkedin"></ion-icon></a></li>
<li class="footer-list-item"><a href="https://github.com/Pratik-Dash" target="_blank"><ion-icon name="logo-github"></ion-icon></a></li>
</ul>
</footer>
</body>
</html>