-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
67 lines (67 loc) · 2.25 KB
/
index2.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
<!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>the fitst page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="style.css">
<script src="img.js"></script>
</head>
<body>
<header>
<img src="sland.jpg" width="120px" height="120px">
<h1>mohamed</h1>
<h4>web developer</h4>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#skills">skills</a></li>
<li><a href="#project">project</a></li>
</ul>
</header>
<section id="home" class="">
<h3>Hello!</h3>
<h2>Welcome my site</h2>
<p >Lorem ipsum dolor sit amet, consectetur adipisicing elit. Porro voluptate aut corrupti.</p>
</section>
<section id="skills" class="skills">
<h4>These my skills</h4>
<div class="box-container">
<div class="skill">
<span>C#</span>
<h5>100%</h5>
</div>
<div class="box-container">
<div class="skill">
<span>Javascript</span>
<h5>75%</h5>
</div>
<div class="box-container">
<div class="skill">
<span>Python</span>
<h5>60%</h5>
</div>
<div class="box-container">
<div class="skill">
<span>Rust</span>
<h5>55%</h5>
</div>
<div class="box-container">
<div class="skill">
<span>Rupy</span>
<h5>40%</h5>
</div>
</div>
</section>
<div class="container">
<figure class="image-container">
<img id="chosen-iamge">
<figcaption id="file-name"></figcaption>
</figure>
<input type="file" id="upload-button">
<label for="upload-button">CHoose Aphoto</label>
<i class="fas-fa-upload"></i>
</div>
</body>
</html>