forked from abinashnepali/abinashnepali.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (95 loc) · 3.4 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
130
131
132
133
134
135
136
137
138
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header>
<h1 id="name">Your Name</h1>
<div id="designation">
<span class="title">your designation</span>
<span class="organization">The organisation name</span>
</div>
<div class="contact">
<div class="email">[email protected]</div>
</div>
</header>
<div class="content" role=main>
<section id="objective">
<h2 class="title">Objective</h2>
<div class="description">
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
</p>
</div> <!-- end description -->
</section>
<section id="Education">
<h2 class="title">Education</h2>
<div class="description">
<table>
<thead>
<td>Duration</td>
<td>Qualification</td>
<td>Institute/School</td>
<td>Result</td>
</thead>
<!-- edit this/ row-wise-->
<tr>
<td>abc</td>
<td>abc</td>
<td>abc</td>
<td>abc</td>
</tr>
<tr> <!-- row2 -->
<td>abc</td>
<td>abc</td>
<td>abc</td>
<td>abc</td>
</tr>
</table>
</div> <!-- end description -->
</section>
<section id="projects">
<h2 class="title">Projects Undertaken</h2>
<div class="description">
<!-- Project 1 -->
<section class="project">
<h3 class="title">Title of the project</h3>
<div class="meta">
<span class="field">Project Field</span> <span class="date">Aug 2010 - Nov2010</span>
</div>
<p class="description"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
</section> <!-- end project description -->
<!-- project 2 -->
<section class="project">
<h3 class="title">Title of the project</h3>
<div class="meta">
<span class="field">Project Field</span> <span class="date">Aug 2010 - Nov2010</span>
</div>
<p class="description">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
</section> <!-- end project description -->
<!-- project 3 -->
<section class="project">
<h3 class="title">Title of the project</h3>
<div class="meta">
<span class="field">Project Field</span> <span class="date">Aug 2010 - Nov2010</span>
</div>
<p class="description">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
</section> <!-- end project description -->
</div> <!-- end description -->
</section>
<!-- Training/ seminars -->
<!-- Scholistics Achievements -->
<!-- Technical Skills -->
<!-- Extra-Curricular Activities -->
<!-- Personal Informations -->
<!-- References -->
<!-- Declarations -->
<!-- signatory -->
</div> <!-- end main content -->
</div> <!-- end container -->
</body>
</html>