forked from fikrcamp/HTML-Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (58 loc) · 2.58 KB
/
index.html
File metadata and controls
70 lines (58 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<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="home.png" />
</head>
<body>
<!-- Add your HTML here -->
<header>
<h1 class="header">My First Blog</h1>
<ul>
<li> <a href="#">Services</a> </li>
<li> <a href="#">About Us</a> </li>
<li> <a href="#">Contact Us</a> </li>
</ul>
</header>
<div>
<P>this blog i have talked about how to become a full stack developer also everythign you need to become it.</P>
</div>
<div class="content">
<div class="article1">
<h1> HTML</h1>
<img src="photo-1542831371-29b0f74f9713-2.jpg" alt="html code">
<pre> HTML (HyperText Markup Language) is the code that is used to structure a web page and its content.
For example, content could be structured within a set of paragraphs,
a list of bulleted points, or using images and data tables.</pre>
</div>
<div class="article2">
<h1> CSS </h1>
<img src="image3.jpg" alt="css code">
<pre>CSS (Cascading Style Sheets) is used to style and layout web pages — for example,
to alter the font, color, size, and spacing of your content, split it into multiple columns,
or add animations and other decorative features.</pre>
</div>
<div class="article3">
<h1> GIT and Github </h1>
<img src="1_mtsk3fQ_BRemFidhkel3dA.png" alt="GIT and Github">
<pre>Git is a version control system that lets you manage and keep track of your source code history.
GitHub is a cloud-based hosting service that lets you manage Git repositories.
If you have open-source projects that use Git, then GitHub is designed to help you better manage them.</pre>
</div>
<div class="article4">
<h1> Javascript </h1>
<img src="image1.jpg" alt="javascript">
<pre>JavaScript is the world's most popular programming language.
JavaScript is the programming language of the Web. JavaScript is easy to learn.</pre>
</div>
</div>
<br></br>
<footer class="footer">
<P>copyright @ mukhtar osman 2022</P>
</footer>
</body>
</html>