-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsa.html
More file actions
95 lines (91 loc) · 2.29 KB
/
sa.html
File metadata and controls
95 lines (91 loc) · 2.29 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
<html>
<head>
<title>My Portfolio</title>
<style>
body {
background-color: aqua;
font-family: Arial;
}
.container {
width: 80%;
margin: auto;
background-color: aliceblue;
padding: 80%;
border: 2px solid black;
}
h1, h2 {
color: darkblue;
}
.profile{
display: flex;
align-items: center;
}
.profile img{
width:140px;
height: 140px;
border: 2px solid black;
margin-right:20px;
}
table{
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
table, th,td {
border:1px solid black;
text-align:center;
padding: 8px;
}
</style>
</head>
<body>
<div class="container">
<h1>My Portfolio</h1>
<p style="color: green;">Aspiring Software Developer</p>
<div class="profile">
<img src="images.jpg" alt="My Photo">
<p>Hello! I am Student learning web developmwnt .this is my personal portfolio webpage</p>
</div>
<h2>Education</h2>
<table>
<tr>
<th>Course</th>
<th>
Institution
</th>
<th>
Year
</th>
</tr>
<tr>
<td>B.Tech</td>
<td>Sahaydri college</td>
<td>2024</td>
</tr>
<tr>
<td>PUC</td>
<td>SDM PUC</td>
<td>2024</td>
</tr>
<tr>
<td>SSLC</td>
<td>Kumaraswamy Vidyalaya</td>
<td>2022</td>
</tr>
</table>
<h2>
MY SKILLS
</h2>
<ul>
<li>HTML Basics</li>
<li>CSS Basices</li>
<li>TEamwork</li>
<li>communicatin</li>
<li>c programming</li>
</ul>
<h2>contact me</h2>
<p>email:samruddhmathav@gmail.com</p>
<p>phone:9483922155</p>
</div>
</body>
</html>