-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
94 lines (79 loc) · 4.38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>code.me - HOME</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css">
<link rel="stylesheet" href="assets/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"> </script>
</head>
<body>
<section class="hero is-info is-fullheight is-bold">
<div class="hero-head">
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<h1 class="title is-1">code.me </h1>
</a>
<div id="navbarBurger" class="navbar-burger burger" data-target="navMenuDoc">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<div id="navMenuDoc" class="navbar-menu">
<div class="navbar-end">
<span class="navbar-item">
<a class="button is-rounded is-light is-outlined" href="./assets/challenges.html">
<span class="icon">
<i class="fa fa-question"></i>
</span>
<span>Daily Challenges</span>
</a>
</span>
</div>
</div>
</nav>
</div>
<div class="hero-body">
<div class="container has-text-centered">
<div class="column is-6 is-offset-3">
<h1 class="title">
WELCOME
</h1>
<h3 class="subtitle">
<strong> code.me </strong> is a daily coding challenge. Here you will be able easily access tons of coding challenges to enhance your skills.
Please enter your name below to get started. </h3>
<div class="box">
<div class="field is-grouped">
<p class="control is-rounded is-expanded btn-marg">
<input class="is-rounded input" type="text" placeholder="Enter your name" id="userName">
</p>
<p class="control">
<a href="assets/challenges.html"><button id="saveName" class="button btn-space is-rounded is-info">
<span class="icon is-small">
<i class="fas fa-check"></i>
</span>
<span>Save</span>
</button></a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="container has-text-centered">
<footer class="footer">Copyright © 2019</footer>
</div>
<div class="field">
</div>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="script.js"></script>
</body>
</html>