-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·138 lines (108 loc) · 5.46 KB
/
Copy pathindex.html
File metadata and controls
executable file
·138 lines (108 loc) · 5.46 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
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<title>My Profile Page</title>
<link href="learning/Week1---Final-Project/assets/css/portfolio.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="learning/Week1---Final-Project/assets/js/script.js"></script>
</head>
<body>
<div class="sidebar">
<div class="des">
<img alt="profile picture" class="im" src="learning/Week1---Final-Project/images/rono.jpg">
<div class="profileinfo">
<p class="name"><b>I am Ranajit</b> </p>
<p class="info">Trainee-Engineering
FusionCharts</p>
</div>
</div>
<div class="footer">
<div id="twitter"></div>
<div id='facebook'></div>
<div id='linkedin'></div>
<div id='google'></div>
</div>
<div class="abc">
<img src="learning/Week1---Final-Project/images/copyright.png" alt="copyright" id="copyright"/>
<p class="footernote">Untitled | Design:<u>FusionCharts</u></p>
</div>
</div>
<div class="mainpage">
<div class="innerdiv">
<h1>Hello I am Ranajit </h1>
<p class="description">
I have completed my B.Tech in computer science and engineering from Dr.B.C Roy Engineering College.
I am now currently working in Fusion Charts as a trainee.I love to do coding and I enjoy it very much.
</p>
<button class="button" id="bt" type="button">Learn more</button>
<hr>
<h4>Recent Work</h4><!--RECENT WORK PART STARTS HERE-->
<div class="project">
<img alt="html project" class="picture" onclick="show('1')" src="learning/Week1---Final-Project/images/1.png"/>
<h5>News Information</h5>
<p class="text">You can get news information from here</p>
</div>
<div class="project">
<img alt="html project" class="picture" onclick="show('2')" src="learning/Week1---Final-Project/images/2.png"/>
<h5>News Subscription</h5>
<p class="text">You can subscribe to news from here</p>
</div>
<div class="project">
<img alt="html project" class="picture" onclick="show('3')" src="learning/Week1---Final-Project/images/3.png">
<h5 >Hotel Management System</h5>
<p class="text">Hotels can be booked from here</p>
</div>
<div class="project">
<img alt="html project" class="picture" onclick="show('4')" src="learning/Week1---Final-Project/images/4.png">
<h5 >Hospital Management System</h5>
<p class="text">This software maintains all the data of a hospital</p>
</div>
<div class="project">
<img alt="html project" class="picture" onclick="show('5')" src="learning/Week1---Final-Project/images/5.png">
<h5 >Gas Booking System</h5>
<p class="text">Gas Cylinders can be booked from here</p>
</div>
<div class="project">
<img alt="html project" class="picture" onclick="show('6')" src="learning/Week1---Final-Project/images/6.png">
<h5 >Train running status </h5>
<p class="text">You can get the running status of any train from here</p>
</div>
<button class="button" type="button">Full Portfolio</button>
<hr>
<!--Recent work ends here-->
<h5>Get in Touch</h5>
<p class="description">Accumsan pellentsque commodo blandit enim
arcu not at amet id arcu magna.Accumsan orci faucibus id eu lorem
semper nunc nisi lorem vulputate lorem neque lorem ipsum dolor.</p>
<!--Feedback form starts here-->
<form>
<input name="name" placeholder="Name" type="text"> <input name=
"email" placeholder="Email" type="text">
<textarea cols="60" name="message" rows=
"10" placeholder="Message"> </textarea> <button class="button" type="button">Send Message</button>
</form>
<div class="contacticons"><img alt="homeicon" src=
"images/homeicon.png"> <img alt="mobileicon" src=
"images/mobile.png"> <img alt="emailicon" class="emailicon" src=
"images/email.png"></div>
<div class="contactinfo">
<p class="address">14/1 Behala Para Lane Amulya Susama
Apartment Kolkata</p>
<p class="mobile">91-8967990945</p>
<p class="email">ranajit.banerjee@fusioncharts.com</p>
</div><!--Feedback form Ends here-->
</div><!--innerdiv ends here-->
</div>
<div id="modal">
<div id="box">
<div id="innerbox">
<input type="image" class="closebutton" src="learning/Week1---Final-Project/images/close.png" alt="closebutton" onclick="hide()"/>
<input type="image" class="leftbutton" src="learning/Week1---Final-Project/images/left.png" alt="leftbutton" onclick="setcontent('left')"/>
<input type="image" class="rightbutton" src="learning/Week1---Final-Project/images/right.png" alt="rightbutton" onclick="setcontent('right')"/>
</div>
<div class="smalltext">
<p id="description"></p>
</div>
</div>
</div>
</body>
</html>