forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (63 loc) · 3.92 KB
/
index.html
File metadata and controls
73 lines (63 loc) · 3.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head><nav class="nav main-nav">
<ul>
<li><a href="#html">HTML</a></li>
<li><a href="#css">CSS</a></li>
<li><a href="#javascript">JAVASCRIPT</a></li>
</ul>
</nav>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<header class="main-header">
<h1>About coding</h1>
</header>
<main>
<section class="content-section container1">
<article>
<h2 id="html">What is html and how to use it?</h2>
<img src="https://th.bing.com/th/id/OIP.5VOxpn6gKxJTJduZUxTH7wHaD4?pid=ImgDet&rs=1" alt="">
<p>HTML stands for “hypertext markup language.”. It is a coding language used to create pages that a web browser can display. Most of the web pages you find on the internet.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non …</p>
<a href="https://www.w3schools.com/html/default.asp">you can find more explaining about html here </a>
</article>
</section>
<section class="content-section container2">
<article>
<h2 id="css">What is css and how to use it?</h2>
<img src="https://th.bing.com/th/id/R.7ceb668416198b02222cf66d4b166ee7?rik=QEYaROnYcMgGOQ&riu=http%3a%2f%2fwww.psddesigntohtml.com%2fwp-content%2fuploads%2f2013%2f08%2fcss-tags.jpg&ehk=PME2%2f1LuoRkXNWHoqp1pwKfRUtDu2j%2fSuwTzS1LJNNI%3d&risl=&pid=ImgRaw&r=0" alt="">
<p>What is CSS. CSS stands for Cascading Style Sheets. It is a style sheet language which is used to describe the look and formatting of a document written in markup language. It provides an additional feature to HTML. It is generally used with HTML to change the style of web pages and user interfaces.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.” The purpose of lorem ipsum is to create a natural looking block of text (sentence, paragraph, page, etc.)</p>
<a href="https://www.w3schools.com/css/default.asp">you can find more explaining about css here</a>
</article>
</section>
<section class="content-section container3">
<article>
<h2 id="javascript">What is Javascript and how to use it?</h2>
<img src="https://daily-dev-tips.com/images/28-11-2020.jpg" alt="">
<p>What is JavaScript? JavaScript is a text-based programming language used both on the client-side and server-side that allows you to make web pages interactive. Where HTML and CSS are languages that give structure and style to web pages, JavaScript gives web pages interactive elements that engage a user.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<a href="https://www.w3schools.com/js/default.asp">you can find more explaining about Javascript here </a>
</article>
</section>
</main>
<footer class="main-footer">
created by Seble
</footer>
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
</body>
</html>