디지털 이력서

13439 단어 webdevbeginners
손에 이력서가 있다면 웹상에서 날아가게 합시다.

이력서는 개인적 및 직업적 경험, 기술 및 교육 이력에 대한 간략한 요약입니다. 주요 목적은 최고의 자아를 잠재력에 과시하는 것입니다. 그리고 이력서를 꼼꼼히 준비해야 합니다.

건물을 시작하자



index.html, style.css 및 script.js로 폴더를 만들어 이 프로젝트를 시작했습니다.

index.html은 프로젝트의 루트 파일입니다. 모든 스타일링 부분은 style.css로 구분되며 script.js 파일이 이벤트를 처리합니다.

Repo ⚡
Live ⚡

HTML 설정
보일러 플레이트 HTML 설정을 가져와서 모든 것을 구축해 봅시다.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <link rel="icon" href="https://st3.depositphotos.com/27847728/36434/v/950/depositphotos_364349646-stock-illustration-initial-letter-logo-design-vector.jpg?forcejpeg=true">
    <script src="script.js"></script>
    <title>Jagadeesh Koyya</title>
</head>
<body>

    <!-- Button -->
    <input type="checkbox" id="checkbox" onclick="myFunction()">

    <div id="container">

        <section id="wrapper--hero" class="section--page">
            <div>
                <h1 id="username">Jagadeesh Koyya</h1>
                <p id="bio">Software developer, programmer in c and c++. Enthusiastic in full stack development. Blogger in dev, hashnode.</p>
                <p id="email">👉 [email protected]</p>
            </div>
        </section>

        <section class="section--page">
            <div id="social--links">
                <a href="https://dev.to/jagadeeshkj" target="_blank">Dev</a>
                <a href="https://twitter.com/jagadeesh_kj" target="_blank">Twitter</a>
                <a href="https://www.linkedin.com/in/jagadeesh-kj/" target="_blank">Linkedin</a>
                <a href="https://github.com/JagadeeshKJ" target="_blank">GitHub</a>
                <a href="./assets/Jagadeesh Koyya.pdf" target="_blank">Download Resume</a>
            </div>
        </section>

        <section class="section--page">
            <h2>Skills & Qualifications</h2>
            <ul id="qualifications--list">
                <li>✔️ HackerRank with 20205 Hackos in C & C++
                </li>
                <li>✔️ Selected as Campus Ambassador of E-Cell, IIT Bombay (2021-22)</li>
                <li>✔️ Experienced content writer on Dev community, Hashnode </li>
                <li>✔️ CEFR B2 Upper Intermediate 499 EnglishScore</li>
            </ul>
        </section>

        <section class="section--page">
            <h2>Tech Stack</h2>

            <div id="wrapper--techstack--items">
                <div class="card--techstack">
                    <span>Python, Javascript, Node JS</span>
                </div>

                <div class="card--techstack">
                    <span>Django, FastAPI</span>
                </div>

                <div class="card--techstack">
                    <span>React, Next JS</span>
                </div>

                <div class="card--techstack">
                    <span>MangoDB, MySQL</span>
                </div>

            </div>
        </section>

        <section id = "work-history-wrapper class="section--page">
            <h2>Work History</h2>

            <div class="line-break"></div>
            <div class="card--work-history">
                <strong>🚧 Software Developer, Blog writter at Dev.io</strong>
                <p>01/2021 - Present</p>
                <p>Worked on building useful tools for real-time problem solving. Learning trending tech and teaching people via blog writing is helpful and enjoyable.</p>
                <ul>
                    <li>Produced educational blog content which resulted in 300k+ views on Dev</li>
                    <li>Produced SE campaigns and content to gain market share for related keywords.</li>
                </ul>
            </div>
            <div class="line-break"></div>

            <div class="card--work-history">
                <strong>🚧 Campus Ambassador of E-Cell, IIT Bombay</strong>
                <p>05/2021 - Present</p>
                <p>Interacted with people of different mindsets and from various cultural backgrounds.</p>
                <ul>
                    <li>Made regular contributions to the CA program (work from home)</li>
                    <li>Incentives, real-time learning, entrepreneurship and more </li>
                </ul>
            </div>
            <div class="line-break"></div>
        </section>

        <!-- Projects -->
        <section class="section--page">
            <h2>Projects & Accomplishments</h2>

            <div class="card--project">
                <a href="project1.html"><span>🏆 </span>QR Code Generator - For Any Website
                </a>
            </div>

            <div class="card--project">
                <a href="project5.html"><span>🏆 </span>Password Generator - Authentic
                </a>
            </div>

            <div class="card--project">
                <a href="project2.html" ><span>🏆 </span>Whatsapp Anonymous Messanger</a>
            </div>

            <div class="card--project">
                <a href="project3.html" ><span>🏆 </span>Starbucks Clone - An art of cool work</a>
            </div>

            <div class="card--project">
                <a href="project4.html"><span>🏆 </span>Restaurant Website - A Working Prototype</a>
            </div>

        </section>

    </div>

</body>
</html>


Skills, Tech Stack, Work History 및 Projects에 대한 섹션을 포함하고 모든 항목을 컨테이너에 포장했습니다.

프로젝트 페이지의 상용구는 다음과 같습니다.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Jagadeesh Koyya</title>
</head>
<body>
    <div id="container">
        <a href="index.html">&#x2190; Go Back</a>
        <h1>Built a tool to generate QR Code for handling business websites</h1>

        <ul>
            <li><a href="https://qr-code-generator-eight.vercel.app/" target="_blank">Live Demo</a></li>
            <li><a href="https://github.com/JagadeeshKJ/QR-Code-Generator" target="_blank">Source code</a></li>
        </ul>
        <p>Why remember long websites when you can just click-scan-hit in one go. That's where the cool work of this tool is projected. This tool generates a QR Code for the entered website and it can be saved to access the website 24x7.</p>

        <ul>
            <li>QR Codes are portable and comes in handy.</li>
            <li>Build using qrcode.js, a library of JS.</li>
            <li>QR Code comes in any size and takes little storage.</li>
        </ul>
    </div>
</body>
</html>


지금까지의 스타일링

@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&display=swap');

:root{
    --mainTextColor-light:#000;
    --secondaryTextColor-light:rgb(51 51 51);
    --mainLinkColor-light:#0da2b8;
    --mainBorderColor-light:rgb(218, 218, 218);
    --mainBgColor-light:rgb(249, 250,251);

    --mainTextColor-dark:#fff;
    --secondaryTextColor-dark:#adb0b1;
    --mainLinkColor-dark:rgb(30, 190,214);
    --mainBorderColor-dark:#2b3031;
    --mainBgColor-dark:#131415;

    --mainTextColor:var(--mainTextColor-light);
    --secondaryTextColor:var(--secondaryTextColor-light);
    --mainLinkColor:var(--mainLinkColor-light);
    --mainBorderColor:var(--mainBorderColor-light);
    --mainBgColor:var(--mainBgColor-light);
}

*{
    font-family: 'Readex Pro';
    line-height: 1.5em;
    box-sizing: border-box;
    color: var(--mainTextColor);
}

body{
    background-color: var(--mainBgColor);
}

p, span, li{
    color: var(--secondaryTextColor);
    font-size: 1em;
}

a{
    text-decoration: none;
    color: var(--mainLinkColor);
    font-size: 500;
}

li{
    line-height: 1.9em;
}

#container{
    max-width: 700px;
    margin: 0 auto;
}

.section--page{
    padding-top: 1em;
    padding-bottom: 1em;
}

/* Wrapper-Hero */
#wrapper--hero{
    display: flex;
    align-items: center;
    gap: 4em;
}

#username{
    font-size: 3em;
    line-height: 1em;
}

#bio, a{
    font-weight: 300;
}

/* #pic{
    border-radius: 50%;
    width: 200px;
    height: 150px;
    object-fit: cover;
} */

#email{
    color: var(--mainTextColor);
}

/* Social Media Links */
#social--links{
    display: flex;
    column-gap: 1em;
    justify-content: space-between;
    flex-wrap: wrap;
}

#social--links a{
    font-size: 0.9em;
    color: var(--secondaryTextColor);
    transition: 0.3s;
}

#social--links a:hover{
    color: var(--mainLinkColor);
}

#qualifications--list{
    list-style: none;
}

/* Tech Stack */
#wrapper--techstack--items{
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    font-size: 0.9em;
}

.card--techstack{
    border: 1px solid var(--mainBorderColor);
    border-radius: 5px;
    padding: 0.5em 1em;
}

/* Work History */
.card--work-history{
    margin: 3em 0;
    padding-left: 2em;
    border-left: 1px solid var(--mainBorderColor);
}

.line-break{
    background-color: var(--mainBorderColor);
    height: 1px;
}

/* Projects */
.card--project{
    padding: 1em 0;
    border-top: 1px solid var(--mainBorderColor);
}

.card--project a{
    color: var(--mainTextColor);
    transition: .3s;
}

.card--project a:hover{
    color: var(--mainLinkColor);
}

@media(max-width: 600px){
    #wrapper--hero{
        flex-direction: column;
        gap: 1em;
    }

    .section--page{
        padding: 1em 0;
    }

    .card--work-history{
        border-left: none;
        padding-left: 0;
    }

    #qualifications--list{
        padding: 0;
    }
}


/* Dark Mode */
.dark-mode {
    background-color: var(--mainBgColor-dark);
}

/* Styling the checkbox input */
#checkbox{
    position: absolute;
    top: 20px;
    right: 20px;
    appearance: none;
    -webkit-appearance : none;
    -moz-appearance : none;
    -o-appearance : none;
    width: 60px;
    height: 30px;
    background: black;
    border-radius: 22px;
    cursor: pointer;
    outline: none;
}
/* styling the circle inside the checkbox input */
#checkbox::before{
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color:white;
    border-radius: 35px;
    top: 2px;
    left: 2px;
    cursor: pointer;
    transition: .3s linear;
}
/* moving the checkbox circle when it's toggled by the user */
#checkbox:checked::before{
    left: 35px;
}
/* changing the color of the checkbox when it's toggled */
#checkbox:checked{
    background: rgb(12, 177, 81);
}

#checkbox:checked ~ #container{
    --mainTextColor:var(--mainTextColor-dark);
    --secondaryTextColor:var(--secondaryTextColor-dark);
    --mainLinkColor:var(--mainLinkColor-dark);
    --mainBorderColor:var(--mainBorderColor-dark);
    --mainBgColor:var(--mainBgColor-dark);
}


JS

function myFunction() {
    var element = document.body;
    element.classList.toggle("dark-mode");
 }


그것은 그것에 달려 있습니다. 소스 코드에 액세스할 수 있는 라이브 배포 및 GitHub 리포지토리에 대한 링크를 제공했습니다.🔝

이 프로젝트는 내가 최근에 . 그들은 정말 멋진 콘텐츠를 만듭니다. 실력이 너무 좋은 녀석이다. 🙌🏻

내 프로젝트에 추가한 확장 기능은 다크 모드 기능입니다. 단 한 번의 클릭으로 라이트/다크 모드로 전환할 수 있으며 멋진 것 같습니다.

좋은 웹페이지 즐겨찾기