-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBootstrap.html
More file actions
205 lines (191 loc) · 7.74 KB
/
Bootstrap.html
File metadata and controls
205 lines (191 loc) · 7.74 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>My portfolio</title>
<style>
.b {
position: absolute;
right: 0;
width:50;
height: 50;
}
table {
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<nav class="navbar navbar-light bg-warning">
<a class="navbar-brand" href="#"><img src="kmit-bar.png" width="60" height="50"></a>
<button style="background-color: #131413; color: white; padding: 15px 32px;" type="button">
<a href="#aboutme">About me</a>
</button>
<button style="background-color: #47aa47; color: white; padding: 15px 32px;" type="button">
<a href="#education">Education</a>
</button>
<button style="background-color: #939893; color: white; padding: 15px 32px;" type="button">
<a href="#projects">Projects</a>
</button>
<button style="background-color: #ea300b; color: white; padding: 15px 32px;" type="button">
<a href="#contactme">Contact me</a>
</button>
</nav>
<h1 id="aboutme">About Me</h1><br><br>
<div class="container">
<div class="row">
<div class="col">
<img src="myphoto.jpg" class="rounded-circle" width="230" />
</div>
<div class="col-9">
<h6>SATHVIK C</h6>
<ul>
<li>
Exceptionally well organized and resourceful Professional with
more than six years experience and a solid academic background
in accounting and financial management.
</li>
<li>Excellent analytical and problem solving skills.</li>
<li>
Able to handle multiple projects while producing high quality
work in a fast-paced, deadline-oriented environment.
</li>
</ul>
</div>
</div>
</div>
<hr>
<h1 id="education">My Education</h1><br>
<table>
<tr>
<th>#</th>
<th>Education</th>
<th>Year</th>
<th>CGPA</th>
</tr>
<tr>
<td><b>1</b></td>
<td>SSC</td>
<td>2019</td>
<td>9</td>
</tr>
<tr>
<td><b>2</b></td>
<td>Intermediate</td>
<td>2021</td>
<td>9.4</td>
</tr>
<tr>
<td><b>3</b></td>
<td>B.Tech</td>
<td>2025</td>
<td>8.0</td>
</tr>
</table>
<hr>
<h1 id="projects">My Projects
<button type="button" class="btn btn-primary position-relative">
Total Projects
<span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-danger">
10+
</span>
</button>
</h1><br>
<div class="container">
<div class="row row-cols-2">
<div class="col">
<div class="card" style="width: 45rem;">
<div class="card-body">
<h5 class="card-title">Project 1</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<button type="button" class="btn btn-primary position-relative">Check Here</button>
</div>
</div><br>
</div>
<div class="col">
<div class="card" style="width: 45rem;">
<div class="card-body">
<h5 class="card-title">Project 2</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<button type="button" class="btn btn-primary position-relative">Check Here</button>
</div>
</div><br>
</div>
<div class="col">
<div class="card" style="width: 45rem;">
<div class="card-body">
<h5 class="card-title">Project 3</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<button type="button" class="btn btn-primary position-relative">Check Here</button>
</div>
</div><br>
</div>
<div class="col">
<div class="card" style="width: 45rem;">
<div class="card-body">
<h5 class="card-title">Project 4</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<button type="button" class="btn btn-primary position-relative">Check Here</button>
</div>
</div>
</div>
</div>
</div>
<hr>
<!-- Contact Me -->
<div id="contactme">
<h1 class="display-5">Contact Me</h1>
<div class="row">
<div class="col-2">
<p>A. SAMPLE I</p>
<p>987 West 35 Street</p>
<p>Bellevue, Nebraska 68005</p>
<p>(402) 292-8976</p>
<p>imasample1@xxx.com</p>
</div>
<div class="col-10">
<p>Let me reach you out!</p>
<div class="row">
<div class="col">
<div class="form-floating mb-3">
<input type="text" class="form-control" name="name" id="name" placeholder="Name">
<label for="name">Name</label>
</div>
</div>
<div class="col">
<div class="form-floating mb-3">
<input type="email" class="form-control" id="email" placeholder="Email">
<label for="email">Email</label>
</div>
</div>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="subject" placeholder="Subject">
<label for="subject">Subject</label>
</div>
<div class="form-floating mb-3">
<textarea class="form-control" id="message" rows="5" placeholder="Message"></textarea>
<label for="message">Message</label>
</div>
<div class="mb-3">
<input class="btn btn-primary" type="submit" value="Submit">
</div>
</div>
</div>
</div>
<!-- Close of Contact Me -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz8fnFO9gybB0PgpovI1HwzrcKgqfr5Mz+1bvAsxuPByczq6cF/7AV6GqW" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-t8SY6oFz1By2A7rJGzQg3O4JYKcOL5xXOTJbBfddQ09toquz4J3U5ptAXSP2XZqG" crossorigin="anonymous"></script>
</body>
</html>