forked from koderjoker/Hello-World-I-am
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (45 loc) · 1.62 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello World, I am...</title>
<link href="https://fonts.googleapis.com/css?family=Griffy" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<main class="container">
<section class="head">
<img src="img/JODC.png" alt="jodc logo" class="logo">
</section>
<section>
<!--head-->
<div>
<h1>Hello World, I am...</h1>
</div>
<!--format-->
<div>
<h2>Name</h2>
<p>Introduction</p>
<p>Hobbies/Interests</p>
<p>Goals for this year (It can be anything from breaking your streak of
3 pizzas in a row to becoming the prime minister)</p>
<p>Bonus Question: If you had to change your name, what would your new
name be, and why would you choose that name?</p>
</div>
<!--example-->
<div>
<h2>NIshit</h2>
<p>Hi! I'm 19 and from Delhi.</p>
<p>I enjoy designing and coding stuff, reading and writing stories and poems,
learning new languages and listening to music and do photography.</p>
<p>My goal of this year is to finish 10 webdev projects and learn 500 kanji.</p>
<p>Hm... Nishit sounds nice I guess? It means "SHarp and Intelligent",
which sounds really awesome.</p>
</div>
<p>Hi this is a file created by Nishit<p>
</section>
</main>
</body>
<script src="js/main.js"></script>
</html>