Computer >> कंप्यूटर ट्यूटोरियल >  >> प्रोग्रामिंग >> CSS

एक पेशेवर HTML और CSS बायोडाटा बनाएं:चरण-दर-चरण मार्गदर्शिका

<पी> HTML और CSS के साथ एक पेशेवर बायोडाटा बनाने से आप एक आकर्षक, अनुकूलन योग्य दस्तावेज़ बना सकते हैं जिसे आसानी से डिजिटल रूप से साझा किया जा सकता है। एक अच्छी तरह से संरचित बायोडाटा विभिन्न उपकरणों पर पेशेवर उपस्थिति बनाए रखते हुए आपके कौशल और अनुभव को प्रभावी ढंग से प्रदर्शित करता है।

सिंटेक्स

/* Basic Resume Layout Structure */
.container {
 display: grid;
 grid-template-columns: 1fr 2fr;
 max-width: 1000px;
 margin: 0 auto;
}
.left-section {
 background-color: #333;
 color: white;
 padding: 20px;
}
.right-section {
 background-color: white;
 padding: 20px;
}

घटकों को फिर से शुरू करें

<पी> एक पेशेवर बायोडाटा में आम तौर पर ये आवश्यक अनुभाग शामिल होते हैं

अनुभाग उद्देश्य सामग्री हेडर संपर्क जानकारी नाम, नौकरी का शीर्षक, फोन, ईमेल सारांश पेशेवर अवलोकन कौशल और लक्ष्यों का संक्षिप्त विवरण अनुभव कार्य इतिहास नौकरी के शीर्षक, कंपनियां, तिथियां, उपलब्धियां शिक्षा शैक्षणिक पृष्ठभूमि डिग्री, संस्थान, स्नातक तिथियां कौशल तकनीकी क्षमताएं प्रोग्रामिंग भाषाएं, उपकरण, दक्षता स्तर परियोजनाएं पोर्टफोलियो उल्लेखनीय कार्य उदाहरण और विवरण

उदाहरण:पूर्ण बायोडाटा लेआउट

<पी> निम्नलिखित उदाहरण एक आधुनिक दो-कॉलम रेज़्यूमे लेआउट बनाता है

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Professional Resume</title>
 <style>
 * {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Arial', sans-serif;
 }
 body {
 background-color: #f5f5f5;
 display: flex;
 justify-content: center;
 padding: 20px;
 }
 .resume-container {
 width: 100%;
 max-width: 900px;
 background: white;
 display: grid;
 grid-template-columns: 300px 1fr;
 box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 overflow: hidden;
 }
 .left-section {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
 padding: 30px 20px;
 }
 .profile-img {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 background-color: #fff;
 margin: 0 auto 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 48px;
 color: #667eea;
 font-weight: bold;
 }
 .left-section h2 {
 text-align: center;
 margin-bottom: 10px;
 font-size: 1.5em;
 }
 .left-section .title {
 text-align: center;
 font-size: 0.9em;
 opacity: 0.9;
 margin-bottom: 30px;
 }
 .section-title {
 color: #fff;
 font-size: 1.1em;
 margin: 25px 0 15px 0;
 padding-bottom: 5px;
 border-bottom: 2px solid rgba(255,255,255,0.3);
 }
 .contact-info {
 list-style: none;
 }
 .contact-info li {
 margin: 10px 0;
 font-size: 0.9em;
 }
 .skills-list {
 list-style: none;
 }
 .skill-item {
 margin: 15px 0;
 }
 .skill-name {
 font-size: 0.9em;
 margin-bottom: 5px;
 }
 .skill-bar {
 background: rgba(255,255,255,0.3);
 height: 6px;
 border-radius: 3px;
 overflow: hidden;
 }
 .skill-progress {
 height: 100%;
 background: #fff;
 border-radius: 3px;
 }
 .right-section {
 padding: 30px;
 }
 .right-section h1 {
 color: #333;
 font-size: 2em;
 margin-bottom: 10px;
 }
 .right-section .job-title {
 color: #667eea;
 font-size: 1.2em;
 margin-bottom: 30px;
 }
 .right-section .section-title {
 color: #333;
 font-size: 1.3em;
 margin: 30px 0 15px 0;
 padding-bottom: 5px;
 border-bottom: 2px solid #667eea;
 }
 .experience-item {
 margin: 20px 0;
 }
 .experience-item h4 {
 color: #333;
 font-size: 1.1em;
 }
 .experience-item .company {
 color: #667eea;
 font-weight: bold;
 }
 .experience-item .date {
 color: #666;
 font-size: 0.9em;
 font-style: italic;
 }
 .experience-item ul {
 margin-top: 10px;
 padding-left: 20px;
 }
 .experience-item li {
 color: #555;
 margin: 5px 0;
 }
 </style>
</head>
<body>
 <div class="resume-container">
 <div class="left-section">
 <div class="profile-img">JS</div>
 <h2>John Smith</h2>
 <p class="title">Full Stack Developer</p>
 
 <h3 class="section-title">Contact</h3>
 <ul class="contact-info">
 <li>? john.smith@email.com</li>
 <li>? +1 (555) 123-4567</li>
 <li>? linkedin.com/in/johnsmith</li>
 <li>? New York, NY</li>
 </ul>
 <h3 class="section-title">Skills</h3>
 <div class="skills-list">
 <div class="skill-item">
 <div class="skill-name">JavaScript</div>
 <div class="skill-bar">
 <div class="skill-progress" style="width: 90%"></div>
 </div>
 </div>
 <div class="skill-item">
 <div class="skill-name">React</div>
 <div class="skill-bar">
 <div class="skill-progress" style="width: 85%"></div>
 </div>
 </div>
 <div class="skill-item">
 <div class="skill-name">Node.js</div>
 <div class="skill-bar">
 <div class="skill-progress" style="width: 80%"></div>
 </div>
 </div>
 </div>
 </div>
 <div class="right-section">
 <h1>John Smith</h1>
 <p class="job-title">Full Stack Developer</p>
 <h3 class="section-title">Summary</h3>
 <p>Experienced Full Stack Developer with 5+ years of expertise in building scalable web applications using modern JavaScript frameworks and cloud technologies.</p>
 <h3 class="section-title">Experience</h3>
 <div class="experience-item">
 <h4>Senior Developer at <span class="company">Tech Solutions Inc.</span></h4>
 <p class="date">2021 - Present</p>
 <ul>
 <li>Led development of customer portal serving 10,000+ users</li>
 <li>Improved application performance by 40% through optimization</li>
 <li>Mentored junior developers and conducted code reviews</li>
 </ul>
 </div>
 <div class="experience-item">
 <h4>Junior Developer at <span class="company">StartUp Co.</span></h4>
 <p class="date">2019 - 2021</p>
 <ul>
 <li>Developed responsive web applications using React and Node.js</li>
 <li>Collaborated with design team to implement user interfaces</li>
 </ul>
 </div>
 <h3 class="section-title">Education</h3>
 <div class="experience-item">
 <h4>Bachelor of Computer Science</h4>
 <p class="company">University of Technology</p>
 <p class="date">2015 - 2019</p>
 </div>
 </div>
 </div>
</body>
</html>
A professional two-column resume layout appears with a purple gradient left sidebar containing contact info and skills with progress bars, and a white right section with experience and education details. The design is clean and modern with proper typography and spacing.

मुख्य डिज़ाइन सिद्धांत

  • ग्रिड लेआउट:प्रतिक्रियाशील दो-कॉलम संरचना के लिए सीएसएस ग्रिड का उपयोग करें
  • टाइपोग्राफी पदानुक्रम:शीर्षकों के लिए अलग-अलग फ़ॉन्ट आकार और वजन
  • रंग योजना:अच्छे कंट्रास्ट के साथ पेशेवर रंग
  • दृश्य तत्व:कौशल के लिए प्रगति पट्टियाँ, सुसंगत रिक्ति
  • उत्तरदायी डिज़ाइन:विभिन्न स्क्रीन आकारों के अनुकूल

निष्कर्ष

<पी> HTML और CSS के साथ बायोडाटा बनाने से आपको पेशेवर प्रस्तुति सुनिश्चित करते हुए डिजाइन और लेआउट पर पूरा नियंत्रण मिलता है। सिमेंटिक HTML संरचना और आधुनिक सीएसएस स्टाइल का संयोजन एक आकर्षक, सुलभ बायोडाटा बनाता है जो डिजिटल प्रारूपों में खड़ा होता है।

<पी> एक पेशेवर HTML और CSS बायोडाटा बनाएं:चरण-दर-चरण मार्गदर्शिका


  1. डेटा संरचनाओं में बाइनरी ट्री ट्रैवर्सल डेटा संरचनाओं में बाइनरी ट्री ट्रैवर्सल

    इस खंड में हम बाइनरी सर्च ट्री में मौजूद ट्रैवर्स कीज़ के लिए अलग-अलग ट्रैवर्सल एल्गोरिदम देखेंगे। ये ट्रैवर्सल इनऑर्डर ट्रैवर्सल, प्रीऑर्डर ट्रैवर्सल, पोस्टऑर्डर ट्रैवर्सल और लेवल ऑर्डर ट्रैवर्सल हैं। मान लीजिए हमारे पास एक ऐसा पेड़ है - इनऑर्डर ट्रैवर्सल अनुक्रम इस तरह होगा - 5 8 10 15 16 20 2

  1. जावास्क्रिप्ट त्रुटि संदेश संपत्ति जावास्क्रिप्ट त्रुटि संदेश संपत्ति

    त्रुटि संदेश गुण जावास्क्रिप्ट में त्रुटि संदेश सेट या लौटाता है। त्रुटि संदेश गुण के लिए कोड निम्नलिखित है - उदाहरण <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initi

  1. एचटीएमएल डोम इनपुट नंबर न्यूनतम संपत्ति एचटीएमएल डोम इनपुट नंबर न्यूनतम संपत्ति

    DOM इनपुट नंबर मिन प्रॉपर्टी एक HTML दस्तावेज़ में टाइप =नंबर के इनपुट फ़ील्ड की न्यूनतम विशेषता के मान को लौटाता है और संशोधित करता है। सिंटैक्स निम्नलिखित वाक्य रचना है - वापसी मिनट object.min 2. न्यूनतम संशोधित करना object.min = “number” उदाहरण आइए हम HTML DOM इनपुट नंबर म