generated from ozcanzaferayan/1-week-assignment-github-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Github Language Profile Card</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<div class="search">
<input type="text" id="search-input" placeholder="Type Github username here.." />
<input id="button" type="submit" value="Analyze">
</div>
</header>
<fieldset id="context">
<legend>Result</legend>
<div class="info-top">
<div class="user-info">
<div class="left">
<img
src="https://via.placeholder.com/90"
alt="user-profile-photo"
class="user-image"
id="user-image"
/>
</div>
<div class="right">
<span><strong id="fullName">Firstname Lastname</strong></span>
<span class="username" id="username">@</span>
</div>
</div>
<span class="lang-info">
<span><strong id="repo-length">42</strong> repo</span >
<span><strong id="code-size">10,12 MB</strong> code</span
>
</span>
</div>
</fieldset>
</div>
<script src="index.js"></script>
</body>
</html>