-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
100 lines (95 loc) · 2.86 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
95
96
97
98
99
100
<!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" />
<link rel="stylesheet" href="main.css" />
<link
href="https://fonts.googleapis.com/css?family=Ma+Shan+Zheng|Titillium+Web|Varela+Round&display=swap"
rel="stylesheet"
/>
<title>Coding Ninja Website</title>
<nav>
<img src="profile.png" alt="Profile Picture" />
<p class="headname">CodingNinja</p>
<ul>
<li><a href="#home"> HOME</a></li>
<li><a href="#about"> ABOUT ME </a></li>
<li><a href="#blog"> BLOG</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</nav>
</head>
<body>
<div class="main">
<div class="home" id="home">
<img src="profile.png" alt="Profile" />
<p class="namestart">
Hello, I am Coding Ninja. <br />
Coder and soon to be GitHub expert.
</p>
<p class="nameabout">
Welcome to my page. Most important thing to know - I ♥
<a href="https://www.orcsgirls.org">ORCSGirls</a>
</p>
</div>
<div class="about" id="about">
<h1>About Me</h1>
<p class="aboutabout">
Here is a list of the things I know and how much 😜.
</p>
<p class="skill">HTML & CSS</p>
<div class="skills">
<div class="html">90%</div>
</div>
<p class="skill">Git/GitHub</p>
<div class="skills">
<div class="git">55%</div>
</div>
<p class="skill">PYTHON</p>
<div class="skills">
<div class="python">80%</div>
</div>
</div>
<div class="blog" id="blog">
<h1>Blog</h1>
<div class="blogitem">
<h1>First GitHub Class</h1>
<img src="https://avatars.githubusercontent.com/u/583231?v=4"/>
So excited to participate in the first ever GitHub class today ....
</div>
<div class="blogitem">
<h1>Add something</h1>
..
</div>
</div>
<div class="contact" id="contact">
<h1>Contact</h1>
<div class="contact-about">
Connect with me.
</div>
<div class="contact-socialicon">
<a href="mailto:[email protected]">
<img src="Social/emailD.png" />
</a>
<a href="https://github.com/orcsgirls">
<img src="Social/ghD.png" />
</a>
<a href="https://instagram.com/orcsgirls">
<img src="Social/inD.png" />
</a>
</div>
</div>
</div>
<footer>
<p>
Designed By
<a href="https://github.com/orcsgirls" target="_blank">
ORCSGirls
</a>
Free to use
</p>
</footer>
</body>
</html>