Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Design For Portfolio Wepage #323

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added new.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 32 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,39 @@
<title>HTML Portfolio</title>
</head>
<body>
<header>
<h1>Nasir Hussain</h1>
<h2>Web developer</h2>
</header>
<div class="marqueecont">
<marquee behavior="scroll" direction="right" height="3%" scrollamount="10" scrolldelay="0">
<h1>A Bit More About Me</h1></marquee></div>
<br><br>
<div class="para">
<p>Software Engineering Student with skills of programming to deliver an immersive and engaging user experience through efficent website and application development.

Very passionate about asethetics and UI design.

</p>
</div>
<br><br>
<div class="skills">
<h2>Skills</h2>
<ol>
<li>Communication</li>
<li>Problem Solving</li>
<li>Team Work</li>
<li>Microsoft Office</li>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>Django</li>
<li>Wordpress</li>
<li>Git and Github</li>
<li>Visual Studio Code</li>
</ol>
</div>

Welcome to the HTML Portfolio Project

</body>
</html>
48 changes: 48 additions & 0 deletions src/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
*{
margin: 0;
padding: 0;
}
header{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 40vh;
background: linear-gradient(aqua, #9198e5,white);
border-top: 2px solid #9198e5;
}
header h1{
font-size: 60px;
}
h2{
font-size: 30px;
}
marquee {
/* border: red 2px solid; */
width: 40%;
text-align: center;
border-left: 2px solid #9198e5;
border-right: 2px solid #9198e5;

}
.marqueecont{
/* border: 2px solid blue; */
display: flex;
justify-content: center;
}


p{
/* border: blue solid 1px; */
margin-left:20%;
margin-right: 20%;
font-size: 20px;
text-align: center;
font-family:Georgia, 'Times New Roman', Times, serif
}
.skills h2{
text-align: center;
}
.skills ol{
text-align: center;
}