Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJin051 committed Jun 24, 2024
1 parent 452a6d0 commit d704c2d
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions seungjin/week-5/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="style.css" />
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<script>
const GDSC = "GDSC is good";
</script>
<title>index</title>
</head>

<body>
<h1>
<a href="index.html">Google Developer Student Clubs</a>
</h1>
<div>
<!--
document.querySeletor('body').style.backgroundColor='white';
document.querySeletor('body').style.color='black';
-->
<button
onclick="$('body').css({'background-color': 'white', 'color': 'black'});"
>
Day
</button>
<button
onclick="$('body').css({'background-color': 'black', 'color': 'white'});"
>
Night
</button>
</div>
<div id="grid">
<ol>
<li>
<a href="1.html">GDG</a>
</li>
<li>
<a href="2.html"> GCCXGDSC</a>
</li>
<li>
<a href="3.html">GDE</a>
</li>
</ol>

<div id="article">
<h2>Google Developer Student Clubs</h2>
<img
src="https://i.namu.wiki/i/PRhITwRKotZv3eL5uML5vlniLtc1jQ5_ZOG9v4mi9Nu3ZLN7viTnFbyI9YchNHCQc1IzdV9xw1dHRho5cKZ94w.webp"
alt="gdsc_logo"
width="250px"
/>
<p>
<a
href="https://sites.google.com/view/gdeveloperskorea/%ED%99%88?authuser=0"
>GDSC란
</a>
<u>Google Developer Student Clubs의 약자입니다.</u> 이것은 구글에서
지원하는 학생들을 위한 개발 커뮤니티입니다. GDSC는 대학생들이 기술을
배우고, 협업하고, 혁신적인 프로젝트를 시작할 수 있는 플랫폼을
제공합니다. 이 커뮤니티는 다양한 기술 스택과 주제에 관한 워크숍,
세미나, 해커톤 등을 주최하여 학생들이 기술적으로 성장할 수 있도록
지원합니다. 또한 GDSC는 산업계 전문가들과의 네트워킹 기회를 제공하여
학생들이 취업 또는 인턴십 기회를 확보할 수 있도록 돕습니다.
</p>
</div>
</div>
</body>
</html>

0 comments on commit d704c2d

Please sign in to comment.