Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 3895c61

Browse files
add index page
1 parent ed84210 commit 3895c61

File tree

5 files changed

+75
-1
lines changed

5 files changed

+75
-1
lines changed

‎Composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
3+
}

‎README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
11
# JavaScript30
2-
30 Day Vanilla JS Coding Challenge
2+
> Course created by [Wes Bos](https://github.com/wesbos). Join the challenge (for free!) here - [JavaScript30](https://javascript30.com/account)
3+
4+
<h1 align="center">
5+
<img src="https://javascript30.com/images/JS3-social-share.png" style="max-width:100%" alt="JavaScript30" />
6+
</h1>
7+
8+
Hi everyone!
9+
10+
This repository is created to keep track of my progress in the awesome JavaScript 30 Day Challenge
11+
and commiting & logging what I have learned on daily basis.
12+
13+
If you have any JavaScript/JavaScript30 course related queries, please create a new issue [here](https://github.com/kenneth1870/JavaScript30/issues/new). I will try to respond as soon as possible. I am always happy to help and learn new stuff.
14+
15+
Thanks!
16+
17+
---
18+
19+
## Roadmap
20+
21+
### Day 1: 18 Jun 2018
22+
**Thoughts:** Learned about key event, transitionend event & ES6 template strings.
23+
24+
**Tool Found:** Nice tool for finding JavaScript event keycodes at [keycode.info](http://keycode.info/)

‎index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>#JavaScript30</title>
7+
<link rel="stylesheet" href="main.css">
8+
</head>
9+
10+
<body>
11+
<div class="topnav">
12+
<a class="active" href="./01_day/index.html">01 Day</a>
13+
</div>
14+
</body>
15+
16+
</html>

‎index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php include_once("index.html"); ?>

‎main.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
html {
2+
font-size: 10px;
3+
background: url(https://images.pexels.com/photos/36487/above-adventure-aerial-air.jpg?cs=srgb&dl=light-sea-flight-36487.jpg&fm=jpg) bottom center;
4+
background-size: cover;
5+
}
6+
7+
body, html {
8+
margin: 0;
9+
padding: 0;
10+
font-family: sans-serif;
11+
}
12+
13+
.topnav {
14+
overflow: hidden;
15+
}
16+
17+
.topnav a {
18+
float: left;
19+
color: #f2f2f2;
20+
text-align: center;
21+
padding: 14px 16px;
22+
text-decoration: none;
23+
font-size: 17px;
24+
}
25+
26+
.topnav a:hover {
27+
color: white;
28+
}
29+
30+
.topnav a.active {
31+
color: white;
32+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /