Portfolio

Developer
Size
3,399 Kb
Views
10,120

How do I make an portfolio?

What is a portfolio? How do you make a portfolio? This script and codes were developed by Daniel on 23 October 2022, Sunday.

Portfolio Previews

Portfolio - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Portfolio</title> <link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css'> <link rel="stylesheet" href="css/style.css">
</head>
<body> <html> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" > <link rel="stylesheet" type="text/css" href="style.css"> <meta charset="utf-8"> </head> <body> <!-- <script src="portfolio.js"></script>--> <ul> <li style="float:left;"><a class="active" target="_blank" href="https://codepen.io/twdaniel/">twdaniel</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#portfolio">Portfolio</a></li> <li><a href="#about">About</a></li> </ul> <!-->https://goo.gl/photos/nHEvHxdvbiv4QhAt5<-->
<div id="about">
<h2>Daniel in coding </h2>
<h3>Hi there,</h3>
<quotespace>Coding is an amazing thing that you can create, create, create things what you loved in life, so it push me to learn more coding skills. cheers !</quotespqce> <i class="fa fa-code"></i> </div>
<div id="portfolio">
<h3>Portfolio</h3>
<p>Have few exercises down below, will expend more later...<i class="fa fa-coffee"></i></p> <div class="row"> <div class="col-sm-6"><a target="_blank" href=https://codepen.io/twdaniel/full/KrGJPA>Doris Tribute</a> </div> <div class="col-sm-6"><a target="_blank" href="https://codepen.io/twdaniel/full/YGWoYz">Random Quote Machine</a></div> </div> <div class="row"> <div class="col-sm-6"><a target="_blank" href="https://codepen.io/twdaniel/full/xEAgmq/">Show the local weather</a></div>
<div class="col-sm-6"><a target="_blank" href="https://codepen.io/twdaniel/full/yapRAa/">Build wikipedia viewer</a></div> </div>
</div>
<div id="contact" padding="100px 300px"> <table width="100%" border="0" align="left" cellpadding="0" cellspacing="0"> <table width="90%" border="0"><tr><td> <h2>Contact</h2> <p>Let me know if you have any advice. BTW, reach me through social media here. Thanks for your browse !</p> </td></tr> </table> <form action="" method="post" name="form1"> <table width="100%" border="0" align="left" cellpadding="4" cellspacing="0"> <tr valign="middle"> <td width="50%" align="right"> <p><strong>First Name</strong>: <input type="text" name="fName"></p> <p><strong>Last Name</strong>: <input type="text" name="lName"></p> <p><strong>Mail</strong>: <input type="text" name="Mail"></p></td> <td width="2%"></td> <td align="left" width="50%"><p> <textarea name="message" style="width:50%" rows="5" placeholder="message..."></textarea></p></td> </tr> <tr><td colspan="2" align="right"><input type="button" name="button" value="Send" id="button"></td></tr> </table> </form> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <div id="social"> <tr><td align="center"> <a target="_blank" href="https://www.facebook.com/chihkang"><i class="fa fa-facebook-square" style="font-size:60px;color:darkblue;"></i></a> <a target="_blank" href="https://github.com/twdaniel"><i class="fa fa-github-square" style="font-size:60px;color:darkblue;"></i></a> <a href="mailto:[email protected]"><i class="fa fa-envelope-square" style="font-size:60px;color:darkblue;"></i></a> <a target="_blank" href="https://www.linkedin.com/in/daniel-lee-639b8797"><i class="fa fa-linkedin-square" style="font-size:60px;color:darkblue;"></i></a></td></tr> <tr><td align="center"> <div id="foot">Created by <i class="fa fa-copyright"></i>twdaniel. All Rights Reserved 2016</div>
</td></tr>
</div>
</table>
</table>
</div>
</body>
</html> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Portfolio - Script Codes CSS Codes

ul{ list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: darkblue; position: fixed; top: 0; width: 100%; }
li{ float: right; }
li a{ display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; }
li a:hover{ background-color: gray; }
div{ padding:30px 10px 0px 30px; color:black; font-size:20px; }
#about{ color: black; background-color: green; background: url(https://static.pexels.com/photos/9741/landscape-fog-meadow-mist.jpg) no-repeat center; background-size:cover; font-size:25px; padding: 40px 20px 320px 20px; }
#portfolio{ color: black; background-color: Plum; background: url(https://static.pexels.com/photos/2944/sea-black-and-white-ocean-boats.jpg) no-repeat center; background-size:cover; padding: 40px 20px 80px 20px; }
#contact{ color: black; background-color: yellow; background: url(https://static.pexels.com/photos/2944/sea-black-and-white-ocean-boats.jpg) no-repeat center; background-size:cover; padding: 40px 10px 20px 20px; }
textarea { height: 25%; width: 26%;
}
#social { text-align:right;
}
#foot { /* background-color:darkblue; */ text-align:center" !important;
}

Portfolio - Script Codes JS Codes

$(document).ready(function(){ $("#button").click(function(){ var a = $('input[name="fName"]').val(); var b = $('input[name="lName"]').val(); var c = $('input[name="Mail"]').val(); var d = $('textarea[name="message"]').val(); alert('Sir, I got your response as below:\nFirst name: '+a+'\nLast name: '+b+'\nEmail: '+c+'\nMessage: '+d); });
});
Portfolio - Script Codes
Portfolio - Script Codes
Home Page Home
Developer Daniel
Username twdaniel
Uploaded October 23, 2022
Rating 3
Size 3,399 Kb
Views 10,120
Do you need developer help for Portfolio?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Daniel (twdaniel) Script Codes
Create amazing SEO content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!