{"id":989,"date":"2020-09-19T17:45:22","date_gmt":"2020-09-19T17:45:22","guid":{"rendered":"https:\/\/www.datatype.co.in\/blog\/?p=989"},"modified":"2022-11-15T05:12:26","modified_gmt":"2022-11-15T05:12:26","slug":"how-to-develop-website-part-2","status":"publish","type":"post","link":"https:\/\/datatype.co.in\/blog\/how-to-develop-website-part-2\/","title":{"rendered":"How to Develop a Website &#8211; Part 2"},"content":{"rendered":"\n<p>In the <a href=\"https:\/\/www.datatype.co.in\/blog\/how-to-develop-website-part-1\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">previous part<\/a> of this tutorial, I had given an exercise to develop your resume in HTML. If you are able to develop it, then you have done great job.   If you are still confused, then don&#8217;t worry. I will show you how to do it.<\/p>\n\n\n\n<p>Let&#8217;s create a new web page<strong> <code>resume.html<\/code><\/strong> &#8211; <\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"570\" height=\"425\" src=\"https:\/\/www.datatype.co.in\/blog\/wp-content\/uploads\/2020\/09\/image-5.png\" alt=\"New Web Page Resume\" class=\"wp-image-950\" srcset=\"https:\/\/datatype.co.in\/blog\/wp-content\/uploads\/2020\/09\/image-5.png 570w, https:\/\/datatype.co.in\/blog\/wp-content\/uploads\/2020\/09\/image-5-300x224.png 300w\" sizes=\"auto, (max-width: 570px) 100vw, 570px\" \/><\/figure>\n\n\n\n<p>Now let&#8217;s write some html code. Create three sections using <strong><code>&lt;div&gt;<\/code><\/strong> tags as shown below. I have added id attribute to uniquely identify the sections viz, <strong>profile<\/strong>, <strong>education<\/strong>, <strong>personal <\/strong>and <strong>footer<\/strong>. Use <strong><code>&lt;hr&gt;<\/code><\/strong> tag to separate each sections with a horizontal line.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html>\n  &lt;head>\n\t&lt;title>My Resume&lt;\/title>\n  &lt;\/head>\n  &lt;body>\n\t&lt;h1> Resume &lt;\/h1>\n\t\n\t&lt;div id=\"profile\">\n\t   &lt;!-- Write profile description here -->\n\t&lt;\/div>\n\n\t&lt;hr>\n\n\t&lt;div id=\"education\">\n\t   &lt;!-- Write educational qualifications here -->\n\t&lt;\/div>\n\n\t&lt;hr>\n\n\t&lt;div id=\"personal\">\n\t  &lt;!-- Write personal details here -->\n\t&lt;\/div>\n\n        &lt;hr>\n\n        &lt;div id=\"footer\">\n           &lt;!-- Your name and date here -->\n        &lt;\/div>\n   &lt;\/body>\n&lt;\/html><\/code><\/pre>\n\n\n\n<p>We have the document structure ready. If you open the file in browser you will only see the header <strong>Resume<\/strong>. Now add some content to it.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div id=\"profile\">\n   &lt;h3>Profile&lt;\/h3>\n   &lt;p>Computer Science Graduate, willing to learn new technologies.. &lt;\/p>\t\n&lt;\/div><\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div id=\"education\">\n   &lt;h3>Education&lt;\/h3>\n   &lt;ol>\n       &lt;li> Graduation in the year 2020 from &lt;b>XYZ College&lt;\/b>&lt;\/li>\n       &lt;li> 10+2 in the year 2016 from &lt;b>ABC PU College&lt;\/b>&lt;\/li>\n       &lt;li> 10&lt;sup>th&lt;\/sup> Std. in the year 2014 from &lt;b>ABC School&lt;\/b>&lt;\/li>\n   &lt;\/ol>\n&lt;\/div><\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div id=\"personal\">\n   &lt;h3>Personal Info &lt;\/h3>\n   &lt;ul>\n       &lt;li> Name: Lokesh&lt;\/li>\n       &lt;li> Sex: Male&lt;\/li>\n       &lt;li> DOB: 1-1-1990&lt;\/li>\n       &lt;li> Address: ABC, XYZ Road, India&lt;\/li>\n   &lt;\/ul>\n&lt;\/div><\/code><\/pre>\n\n\n\n<p>Let&#8217;s put everything together &#8211;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html>\n  &lt;head>\n\t&lt;title>My Resume&lt;\/title>\n  &lt;\/head>\n  &lt;body>\n\t&lt;h1> Resume &lt;\/h1>\n\n\t&lt;div id=\"profile\">\n           &lt;h3>Profile&lt;\/h3>\n           &lt;p>\n             Computer Science Graduate, willing to learn new technologies.. \n           &lt;\/p>\t\n        &lt;\/div>\n\n\t&lt;hr>\n\n\t&lt;div id=\"education\">\n           &lt;h3>Education&lt;\/h3>\n           &lt;ol>\n              &lt;li> Graduation in the year 2020 from &lt;b>XYZ College&lt;\/b>&lt;\/li>\n              &lt;li> 10+2 in the year 2016 from &lt;b>ABC PU College&lt;\/b>&lt;\/li>\n              &lt;li> 10&lt;sup>th&lt;\/sup> Std. in the year 2014 from &lt;b>ABC School&lt;\/b>&lt;\/li>\n           &lt;\/ol>\n        &lt;\/div>\n\n\t&lt;hr>\n\n\t&lt;div id=\"personal\">\n\t  &lt;h3>Personal Info &lt;\/h3>\n\t  &lt;ul>\n             &lt;li> Name: Lokesh&lt;\/li>\n\t     &lt;li> Sex: Male&lt;\/li>\n             &lt;li> DOB: 1-1-1990&lt;\/li>\n             &lt;li> Address: ABC, XYZ Road, India&lt;\/li>\n          &lt;\/ul>\n\t&lt;\/div>\n\n\t&lt;hr>\n        &lt;div id=\"footer\">\n          &lt;p>Sincerely,&lt;p>\n          &lt;p> \n            Your Name &lt;br>\n            Date: 1-1-2020\n          &lt;\/p>\n        &lt;\/div>\n  &lt;\/body>\n&lt;\/html><\/code><\/pre>\n\n\n\n<p>Open the file in browser &#8211;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"457\" height=\"617\" src=\"https:\/\/www.datatype.co.in\/blog\/wp-content\/uploads\/2020\/09\/image-8.png\" alt=\"Html Resume Example\" class=\"wp-image-968\" srcset=\"https:\/\/datatype.co.in\/blog\/wp-content\/uploads\/2020\/09\/image-8.png 457w, https:\/\/datatype.co.in\/blog\/wp-content\/uploads\/2020\/09\/image-8-222x300.png 222w\" sizes=\"auto, (max-width: 457px) 100vw, 457px\" \/><\/figure>\n\n\n\n<p>Similarly, you can take any MS Word document as reference and try to create html version of it.<\/p>\n\n\n\n<p>In the next part (Part 3) of this tutorial, I will show you how to create html table, insert image, create hyperlinks and develop html form. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the previous part of this tutorial, I had given an exercise to develop your resume in HTML. If you are able to develop it, then you have done great&nbsp;[ &hellip; ]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[243],"tags":[245,246,247,244,249],"class_list":["post-989","post","type-post","status-publish","format-standard","hentry","category-website-development-tutorial","tag-develop-website-beginner","tag-how-to-develop-website","tag-website-development-course","tag-website-development-from-scratch","tag-website-development-tutorial-step-by-step","list-style-post"],"_links":{"self":[{"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/posts\/989","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/comments?post=989"}],"version-history":[{"count":15,"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/posts\/989\/revisions"}],"predecessor-version":[{"id":1328,"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/posts\/989\/revisions\/1328"}],"wp:attachment":[{"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/media?parent=989"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/categories?post=989"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/datatype.co.in\/blog\/wp-json\/wp\/v2\/tags?post=989"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}