-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
129 lines (121 loc) · 4.37 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
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
<!--doctype html-->
<html>
<head>
<meta charset="utf-8">
<title>Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel=" stylesheet" type="text/css" href="style.css" />
</head>
<body>
<!---home---->
<section id="main">
<nav>
<div class="toggle">DANA ROSE</div>
<ul class="menu">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#goals">Goals</a></li>
<li><a href="#academics">Academics</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#exp">Experience</a></li>
</ul>
</nav>
<img src="image/homee.jpg" class="home">
<div class="name">
<p>Hey,</p>
<h1>I'm <b>Dana Rose</b></h1>
<p class="details">A computer science student passionate about programming and design.</p>
</div>
<img src="image/twitter.png" class="l">
<img src="image/linkedin.png" class="lo">
<img src="image/github.png" class="log">
</section>
<!----About me-->
<section id="about">
<div class="about-text">
<h1>About Me</h1>
<p>I am a third year Undergraduate student of Computer Science and Engineering at
Amal Jyothi College of Engineering, Kanjirappally.
A tech enthusiast who likes creating new things and experimenting with things.
I am always willing to learn new things with full enthusiasm and passion.
I am able to handle multiple tasks on a daily basis.<br><br>
I love travelling. It gives me the chance to be truly engaged in an activity,
to develop new skills and to discover new cultures.
It brings us closer to ourselves and others.Moreover it makes me happy.
</p>
</div>
</section>
<!----goals-->
<section id="goals">
<div class="gtext">
<h1>Goals and Career Aspirations</h1>
<li>
Become a proficient programmer.
</li>
<li>
Have a broad exposure to computer systems.
</li>
<li>
Become a website developer
</li>
<li>
Design, implement and secure a computing network or data system.
</li>
<li>
Learn a new language, framework, Or methodology.
</li>
</div>
</section>
<!-----academics-->
<section id="academics">
<div class="atext">
<h2>Academic Qualificaton</h2>
<div class="box">
<h3>B.Tech<br>Amal Jyothi College of Eng.</h3>
<h4>2018-2022</h4>
</div>
<div class="box">
<h3>Plus Two<br>Sacred Heart HSS</h3>
<h4>2016-2018</h4>
</div>
<div class="box">
<h3>Tenth<br>Infant Jesus EMS</h3>
<h4>2016</h4>
</div>
</div>
</section>
<!---skills----->
<section id="skills">
<div class="stext">
<h2>My Skills</h2>
<li>
<h3>HTML</h3><span class="bar"><span class="html"></span></span>
</li>
<li>
<h3>CSS</h3><span class="bar"><span class="css"></span></span>
</li>
<li>
<h3>PYTHON</h3><span class="bar"><span class="python"></span></span>
</li>
<li>
<h3>JAVA</h3><span class="bar"><span class="java"></span></span>
</li>
<div>
<img src="assets/img/work3.jpg" alt="" class="skills__img">
</div>
</section>
<!----experience-->
<section id="exp">
<div class="etext">
<h1>Experience</h1>
<h2>Quality Assurance Intern</h2>
<h3>Skynox Tech</h3>
<p>I worked as a QA intern at Skynox Tech.I worked there for almost three months.
It includes activities that ensure the implementation of processes, procedures
and standards in context to verification of developed software and intended requirements.
</p>
</div>
<div class="end"></div>
</section>
</body>
</html>