-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
101 lines (91 loc) · 3.07 KB
/
home.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<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=Catamaran:wght@100&display=swap" rel="stylesheet">
<link rel='stylesheet' type='text/css' media='screen' href='style.css'>
<script src='main.js'></script>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
</head>
<body>
<header>
<nav>
<div class="left">Shreya's Portfolio</div>
<div class="right">
<ul>
<li> <a href="home.html">Home </li></a>
<li> <a href="projects.html">Projects</li></a>
<li> <a href="about.html">About</li></a>
<li> <a href="contact.html">Contact</li></a>
</ul>
</div>
</nav>
</header>
<main>
<section class="firstsection">
<div class="leftsection">
Hi, my name is <span class="purp">Shreya </span>
<div>and I am a </div>
<span id="element"></span>
</div>
<div class="rightsection">
<img src="images\webdev.png">
</div>
</section>
</main>
<div class="card1">
<div class="headskill"><h1>Programming Skills</h1></div>
<div class="skill1">
</div>
<div class="skill2">
</div>
<div class="skill3">
</div>
<div class="skill4">
</div><br>
<div class="skill5">
</div>
<div class="skill6">
</div>
<div class="skill7">
</div>
<div class="skill8">
</div>
</div>
<div class="card2">
<h1>Work Experience</h1>
<div class="content">
<h2>Internship</h2>
<h3>JANGS Technologies, Ichalkaranji</h3>
</div>
</div>
<aside class="unity">
<img src="../images/unity.png">
<h3>Language used: C#</h3>
<p>Developed a Car Showroom Prototype using Unity Engine</p>
<div class="pg"><img src="../images/pG.png">
<h3>Languages used: HTML5, CSS3</h3>
<p>Website for real time payment using <b>Razorpay</b> payment gateway</p>
</div>
<div class="team"><img src="../images/team.png">
<h3>Team Manager</h3></div>
</aside>
<footer class="footer">Copyright © shreya tambad</footer>
<!-- Element to contain animated typing -->
<!-- Load library from the CDN -->
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<!-- Setup and start animation! -->
<script>
var typed = new Typed('#element', {
strings: ['<i>Web Developer</i> ', ' Java Developer' ],
typeSpeed: 90,
});
</script>
</body>
</body>
</html>