내일배움캠프/TIL

[본캠프]_미니온보딩 프로젝트 1

cork-7 2024. 12. 25. 00:44
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mypage</title>
    <style>

        .gowun-dodum-regular {
            font-family: "Gowun Dodum", serif;
            font-weight: 400;
            font-style: normal;
        }

        .card-img-top {
            width: 300px;
            height: auto;

            margin: 200px auto 0px;
            padding: 20px;
            box-shadow: 0px 0px 3px white;
            border-radius: 50px;
        }

        .card-body {
            margin-left: 70px;
            padding: 10px;
            box-shadow: 0px 0px 5px white;
            border-radius: 50px;
            font-size: 17px;
        }

        .card-btn {
            margin-left: 70px;
            padding: 10px;
            box-shadow: 0px 0px 5px white;
            border-radius: 50px;
        }    
       
    </style>
</head>

<body>
    <div class="profile" style="width: 18rem;">
        <img src="8925e9ecc38b8ebf0a22.jpg" class="card-img-top" alt="...">
        <div class="card-body">
            <h5 class="card-title">이승민</h5>
            <p class="card-text">포기하지 말고 올라가자</p>
        </div>
        <div class="card-btn">
            <button type="button" class="btn btn-lg" onclick="location.href='https://cork-7.tistory.com/'">블로그</button>
            <button type="button" class="btn btn-lg" onclick="location.href='https://github.com/Seung-min-88'">Github</button>
        </div>
    </div>
</body>

</html>

일부지만 내 페이지를 만들었다.

 ※버튼으로 링크이동 :

<button type="button" class="btn btn-lg" onclick="location.href='https://cork-7.tistory.com/'">블로그</button>

 

github등록

[GIT 초기 저장]
git init
git add .
git commit -m "코드 네임"
git remote add origin <저장소 주소>  //(git주소)
git branch -M main
git push -u origin main

[초기 clone]
git에서 code를 눌러 http코드 복사
git clone <주소>

 

[이후 업로드]

git add.

git commit -m "코드 네임"

git push origin

'내일배움캠프 > TIL' 카테고리의 다른 글

[GitHub]_파일 업로드 중 에러코드 발생시 해결방법(1)  (2) 2024.12.26
[미니온보딩]_버튼에 링크걸기  (0) 2024.12.26
[본 캠프]  (0) 2024.12.23
[Java]_반복문 (1)  (0) 2024.12.20
[Java]_조건문  (1) 2024.12.19