-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportpolio.html
137 lines (130 loc) · 3.33 KB
/
portpolio.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
<html >
<head>
<style>
header{background-color: aqua;
height: 70px;
color:black;}
body{margin: 0px;}
#brand{
width: 40%;
height: 70px;
float: left;
text-align: center;
}
h1{line-height: 35px;
}
a{
color: black;
text-decoration: none;
line-height: 70px;
margin-right: 50px;
}
main{
width: 100%;
}
#imgsection{
width: 40%;
text-align: center;
float: left;
height: 400px;
}
#imgprofile{
margin-top: 150px;
border-radius: 50%;
}
#infosection{
width: 60%;
float: right;
height: 400px;
}
#info{
margin-top: 150px;
}
table{width: 100%;
text-align: center;
}
img{
margin-top: 150px;
border-radius: 50%;
}
footer
{background-color: cornflowerblue;
text-align: center;
margin-top: 50px;
padding: 20px;}
footer section h2{
display: inline-block;
text-align: center;
margin-top: 50px;
padding: 20px;
}
footer section h3{
text-align: inherit;
}
</style>
<title>Saharsh Portpolio Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<nav>
<section id="brand">
<h1>
Saharsh Portpolio
</h1>
</section>
<section id="menu">
<a href="#">Home</a>
<a href="#">Profile</a>
<a href="#">Resume</a>
<a href="#">Projects</a>
<a href="#">Contact</a>
</section>
</nav>
</header>
<main>
<section id="main">
<section id="imgsection">
<img id="imgprofile" src="E:\Camera\IMG_20150521_014259.jpg" width="300px" height="300px"/>
</section>
<section id="infosection">
<div id="info"><h4>
Hi There!!
</h4>
<h2>
I am Saharsh
</h2>
<p><b>Self Motivated and hard working student seeking for an opportunity to work in an challenging enviroment to cast my technical and analytical skills in the growth of caompany and mine.</b></p>
</div>
</section>
<section>
<div>
<table>
<tr>
<td><img src="https://www.pexels.com/photo/man-in-black-jacket-771742/" width="150px" height="150px">
<h3>Profile</h3></td>
<td><img src="https://www.pexels.com/photo/resume-lettering-text-on-black-background-5598289/" width="150px" height="150px">
<h3>Resume</h3></td>
<td><img src="https://www.pexels.com/photo/person-writing-on-notebook-669615/" width="150px" height="150px">
<h3>Projects</h3></td>
<td><img src="https://www.pexels.com/photo/three-black-handset-toys-821754/" width="150px" height="150px">
<h3>Contact</h3></td>
</tr>
</table>
</div>
</section>
</section>
</main>
<footer>
<section>
<h2><a href="#"><i class="fab fa-facebook"></i></a></h2>
<h2><a href="#"><i class="fab fa-twitter"></i></a></h2>
<h2><a href="#"><i class="fab fa-instagram"></i></a></h2>
<h2><a href="#"><i class="fab fa-linkedin"></i></a></h2>
</section>
<section>
<h3>Reserved & copywrite © by saharsh shukla </h3>
</section>
<section></section></footer>
</body>
</html>