Hello friends, Today in this blog I will show you how to create a
Responsive portfolio landing page with awesome UI just using HTML and CSS. Earlier,
you learned to Create a scroll indicator using Javascript.
The landing page is a single-page website
containing important details of the company, organization, or personal portfolio.
Today I’m going to create a landing page for a personal portfolio.
Things Included in portfolio Landing Pages
- Name
- Your Image
- Address
- Social Media Profile
- Phone Number
- Email Address
- Your profession
- And many more
3 Tips to make portfolio landing page better
- Don’t add unnecessary navigations.
- Add a short and sweet description that describes your profession/work.
- Include at least one photo of yours.
After going through this blog, you can easily create a landing page for
your portfolio with awesome UI. As you can see in the above image, the
background is divided into two parts (i.e. black & orange). On the black
background side, there is a name, some description & one message button and the image lies half to the black side and a half to the orange side. At the top of the
page, there is a nav bar containing a logo and some links. To create the
background I have used a linear gradient as shown below.
background: -webkit-gradient(linear, left top, right top,
color-stop(65%, #202020), color-stop(60%, #e36303));
background: linear-gradient(90deg, #202020 65%, #e36303 60%);
If you’re feeling difficult to understand what I am saying. You can watch a video preview of this program (Portfolio Landing Page in HTML and CSS).
You Might Also Like
- User Registration Form in PHP & MYSQL
- Responsive Navigation Bar using HTML & CSS
- Creative Contact Us page
Video Preview of Portfolio Landing Page
All this landing page design is based on CSS only. If you’re a beginner you can also create this type of landing page. If you like this program (Portfolio Landing Page in HTML and CSS) and want to get source code. You can easily get the source code of this program. To get the source codes you just need to scroll down.
Portfolio Landing Page in HTML and CSS [Source
Codes]
To create this portfolio landing page. First, you need to create two Files one HTML File and another one is CSS File. After creating these files just paste the following code into your file. First, create an HTML file with the name index.html and paste the given codes into your HTML file. Remember, you’ve to create a file with a .html extension.
HTML
Second, create a CSS file with the name style.css and paste the given code into your CSS file. Remember, you’ve to create a file with a .css extension.
CSS
That’s all, now you’ve successfully created
your own portfolio landing page using HTML & CSS. If your code does not
work or you’ve faced any errors/problems then please comment down your queries.
If you feel this article had helped you, please share it with your friends. If you have any suggestions for me please
mention them in the comment below.
Post a Comment