Table of Contents
Today we are going to discuss this important topic via this article Build a HTML5 and CSS3 Student Resume Template Design in Browser. We hope you like this article.

Build a HTML5 and CSS3 Student Resume Template Design in Browser
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Abel|Bungee+Hairline|Sacramento|Raleway|Slabo+27px" rel="stylesheet">
<div id="header"></div>
<div class="left"></div>
<div class="stuff">
<br><br>
<h1>Resume</h1>
<h2>Emily</h2>
<hr />
<br>
<p class="head">Interests</p>
<ul>
<li>Drawing</li>
<li>Photography</li>
<li>Design</li>
<li>Programming</li>
<li>Computer Science</li>
</ul>
<p class="head">Skills</p>
<ul>
<li>Web Design with HTML & CSS</li>
</ul>
<p class="head">Education</p>
<ul>
<a href="http://www.wiltonhighschool.org/pages/Wilton_High_School">
<li>Wilton High School</li>
</a>
<!--Link-->
<a href="https://www.silvermineart.org/">
<li>Silvermine School of Arts</li>
</a>
<li>Codeacademy</li>
</ul>
<p class="head">Experience</p>
<ul>
<li>Student Technology Intern for Wilton School District</li>
<li>Babysitter</li>
</ul>
<p class="head">Extracurriculars</p>
<ul>
<li>Recycling Club</li>
<li>Gardening Club</li>
<li>Book Club</li>
</ul>
</div>
<div class="right"></div>
<div id="footer">
<h2 id="name">Emily</h2></div>
* {
max-width: 700px;
margin: auto;
}
/*body {
min-width: 500px;
}*/
div {
border-radius: 5px;
}
#header {
height: 40px;
width: 100%;
background-color: #ffcccc;
position: fixed;
z-index: 1;
}
#title {
margin-left: 3%;
}
#footer {
height: 50px;
width: 100%;
background-color: #ffcccc;
clear: both;
position: relative;
}
.left {
height: 1000px;
width: 45px;
background-color: #e0eeee;
float: left;
position: fixed;
}
.right {
height: 1000px;
width: 45px;
background-color: #e0eeee;
float: right;
position: inherit;
}
.stuff {
display: inline-block;
margin-top: 6px;
margin-left: 55px;
width: 75%;
height: 1000px;
}
p,
li {
font-family: 'Cormorant Garamond';
}
.head {
font-size: 20px;
}
#name {
font-family: Sacramento;
float: right;
margin-top: 10px;
margin-right: 4%;
}
a {
color: black;
text-decoration: none;
}
@media only screen and (max-width: 430px) {
.left,
.right {
display: none;
}
.stuff {
width: 100%;
margin-left: 10px;
}
}
Read Also: JavaScript Program to Shuffle Deck of Cards in Browser
Final Words
Build a HTML5 and CSS3 Student Resume Template Design in Browser We learned about this very clearly through this article. And if you liked this article please share it with your friend.