forked from koderjoker/Hello-World-I-am
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (60 loc) · 2.54 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
<!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>Kanchan</h2>
<p>Hi! I'm 19 and from Noida.</p>
<p>I enjoy designing and coding stuff, reading and writing stories and poems,
learning new languages and listening to music.</p>
<p>My goal of this year is to finish 10 webdev projects and learn 500 kanji.</p>
<p>Hm... Amishta sounds nice I guess? It means "fearless and limitless",
which sounds really awesome.</p>
</div>
<div>
<h2>Shresth</h2>
<p>Hello There , I am from East Delhi and I am 18.</p>
<p>I love playing and just playing , nothing else rather than that besides some coding and food , maybe :)</p>
<p>My Goal of this year is to learn to code well and spend as much less time as possible on gaming </p>
<p>My Name should be .... hmm , idk ,this one looks fine I guess.
</div>
<div>
<h2>Rituparna</h2>
<p>Hi! I'm 20 and from Assam</p>
<p>I liove full stack development, its actually interesting how this major platforms such as facebook, twitter ,etc works.
I love reading , and listening to music, sometimes I try to play a bit of volleyball</p>
<p>This year I want to hone the current skills that I have and perhaps add nodejs to my inverntory.</p>
<p>it's reyhan, it has a cool vibe to it.</p>
</div>
<!--add your own divs starting from here!-->
</section>
</main>
</body>
<script src="js/main.js"></script>
</html>