-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (91 loc) · 4.16 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
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - A Pen by siver</title>
<link rel='stylesheet' href='https://unpkg.com/[email protected]/dist/prettify.css'><link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<!-- =================
WRITE YOUR HTML HERE
You only need to write the HTML that goes inside the <body> tag. To add things to the <head>, click the ⚙️
===================
-->
<!--- All the tests are red! You have to make them green.
Q How do you make the tests pass?
A Meet the requirements!
Make the first test pass by adding a <header> </header>-->
<!-- Your test console.
Don't delete!-->
<!DOCTYPE html>
<html lang="en">
<head> <title>siver</title>
<meta charset="UTF-8"></head>
<header class="c-site-header">
<nav id="navbar" aria-label="Main Site Links.">
<ul class="nav-list">
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</header>
<h1>my homepage</h1>
<section id="home" class="home-section">
<div class="home-text">
<h2> hello,iam siver</h2>
<h2>Welcome to my website</h2>
<p>I am physics teacher</p>
<p>to know more about me click
<a href="#about">here.</a>
</p>
</div>
<div class="home-img">
<img src="https://i.pinimg.com/originals/21/92/35/21923540f73c1e60cf0ec77e361322bc.jpg" title="" alt="photo of teacher">
</div>
</section>
<main>
<section id="projects" class="projects-section">
<h3 class="projects-section-header">This is a video about physics</h3>
<div class="project-lists">
<iframe title="My projects" id="video"
src="https://www.youtube.com/embed/HuZZpJJF71U" allowfullscreen>
</iframe>
</div>
</section>
<section id="about" class="about-section">
<div class="about-text">
<h3>More about me...</h3>
<p>
My full name is siver omar,I come from kurdistan.i have been in scotland for two years.
</p>
<p>I have a bachelor of physics Science. my specification is teaching high school students.I attend some courses about how to help those students who are struggling with physics. i attend this courses because i want to try new things.</p>
<p>these are same private thing about my personality,iam a keen reader of book and i enjoy reading scientific book.traveling around the world is one of my dream.
</p></div>
</section>
</main>
<h4 id="p-cyf">These are some natural phenomena related to physics</h4>
<button id="previous-img-cyf">previous</button>
<img id="exhibition-cyf" src="" >
<button id="next-img-cyf">next</button>
<footer class="c-site-footer" id="contact">
<div> <br><b>Contact Me<br><br>G-mail:[email protected]</b><br><br>
</div>
</footer>
<aside id="tests" aria-label="Test Readout." aria-live="polite" style="overflow:auto">
</aside></html>
<!-- partial -->
<script src='https://unpkg.com/[email protected]/dist/core.js'></script>
<script src='https://unpkg.com/[email protected]/dist/prettify.js'></script><script src="./script.js"></script>
</body>
</html>