본문 바로가기
나의 개발자 입문기 2023

Day 30 : 바쁜현생, 생활코딩으로 재정리하기

by whereanna00 2023. 4. 4.

~ Day 30 기록

 

바쁜 현생(현재 회사 일, 무너진 생활리듬, 무기력증)으로 한동안 잠시 공부를 쉬었다.

가까스로 오전 1-2시에 취침 후, 오전 9시에 일어나, 퇴근 후 1시간 gym에서 운동하는 규칙적인 루틴을 만들기 시작하자 삶의 질이 훨씬 좋아졌다. 따라서 한동안 놓고 있던 개발공부를 다시 리프레시하는 느낌으로 (흥미를 잃지 않는 것이 중요하기 때문에) 생활코딩 html 1-16편까지 들으며 정리했다.

 

  • <ul> (unordered list) 와 <li>는 항상 같이 다니는 부모자식 관계이다. 
  • <ol> (ordered list)를 쓰면 아래 <li> 항목 개수가 줄어도 자동적으로 1..2..3..으로 정리된다. 숫자를 따로 바꾸는 작업 불필요.
  • 기본값으로 들어가는 태그들
<!doctype html>
<html>
...
</html>
  • <head>안에 <title>은 홈페이지 탭에 표시되는 이름을 변경할 수 있다
<head>
    <title>HTML</title>
    <meta charset="utf-8">
</head>

 

 

마무리

<!doctype html>
<html>
<head>
    <title>Welcome</title>
    <meta charset="utf-8">
</head>
<body>
    <h1><a href="index.html">WEB</a></h1>
    <ol>
        <li><a href="1.html">HTML</a></li>
        <li><a href="2.html">CSS</a></li>
        <li><a href="3.html">JavaScript</a></li>
    </ol>

    <H2>WEB</H2>x
    <a href="https://www.youtube.com">Are You Still Awake (AUSA)</a> is an website where you can <strong>calculate the perfect <u>time</u> to sleep</strong> depends on your daily routine and time plans. 
    <p style="margin-top: 40px;">In 2021, Chalamet portrayed a student revolutionary in Wes Anderson's ensemble comedy-drama The French Dispatch.[95][96] The film had its world premiere at the 2021 Cannes Film Festival, where it generated positive reviews.[97] Anderson wrote the role with Chalamet in mind.[98] Brianna Zigler of Paste Magazine found him to be "perfectly attuned to Anderson's highly specified wavelength".[99] Chalamet starred as the main character Paul Atreides in Denis Villeneuve's film adaptation of the science fiction novel Dune, which premiered at the 78th Venice International Film Festival.[100] Villeneuve stated that Chalamet was his only choice to play the role: "I needed that for the audience to believe this young man will be able to lead a whole planet."[101] Dune received positive reviews with The Hollywood Reporter's David Rooney praising his "magnetic pensiveness [that] gives the coming-of-age element some heart" and Lewis Knight of Daily Mirror writing that "Timothée Chalamet completes his ascension to Hollywood leading man status".[102][103] Dune earned over $400 million worldwide to emerge as his highest-grossing release.[104] In his final role of the year, Chalamet played a skater punk in Adam McKay's Netflix ensemble comedy film Don't Look Up.[105] It received mixed reviews from critics.[106] Justin Chang of the Los Angeles Times found Chalamet "sweetly sincere" in his small part.[107] The ensemble cast of the film was nominated for a SAG Award.</p>
    <img src="Timothee_Chalamet.png">
</body>
</html>
728x90
반응형