HTML 및 CSS가 포함된 DEV 로고

2347 단어 htmlcss
여기요! 간단한 CSS - HTML(대부분 CSS) 로고를 만드는 방법을 보여드리겠습니다.

먼저 다음 코드가 포함된 HTML 파일을 만듭니다.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>DEV logo</title>
</head>
<body>
    <main>
        <p>DEV</p>
    </main>
</body>
</html>

여기에서는 웹 페이지에 "DEV"가 인쇄됩니다.

다음으로 style.css(이전에 "style.css"를 연결함)라는 파일을 만들고 몇 가지 속성을 추가하여 텍스트를 구성해야 합니다.

먼저 자동으로 추가된 여백을 모두 제거해야 합니다. 코드가 섞일 수 있기 때문입니다.

*{
    margin: 0;
}

이제 텍스트 자체에 대해 작업할 수 있습니다. font-weight 연산자로 두껍게 만들고, font-size 연산자로 텍스트를 더 크게 만들고, DEV 로고 스타일과 유사한 글꼴 패밀리를 찾았습니다. 그것도:

p{
    font-family: 'Trebuchet MS';
    font-weight: 900;
    font-size: 50px;
}

그런 다음 다음 코드를 사용하여 텍스트 주위에 둥근 상자를 넣을 수 있습니다.

p{
    border: 5px solid black;
    border-radius: 10px;
    background-color: black;
    color: white;
}

마지막으로 화면 중앙에 로고를 넣을 수 있습니다.

body {
    text-align: center;
}
main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

따라서 전체 style.css는 다음과 같습니다.

*{
    margin: 0;
}
body {
    text-align: center;
}
main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}
p {
    font-family: 'Trebuchet MS';
    font-weight: 900;
    font-size: 50px;
    padding: 21px 5px;
    border: 5px solid black;
    border-radius: 10px;
    background-color: black;
    color: white;
}

완성된 DEV 로고는 다음과 같습니다.

좋은 웹페이지 즐겨찾기