Ethio-programmers
34 subscribers
2 photos
2 files
1 link
ኢትዮጵያዊ ፕሮግራሚንግ ቻናል HTML, CSS, JAVASCRIPT, PHP, C++, C, PAYTON.....ወዘተ ለሁሉም ስልጠና በዝህ ቻናል ያገኛሉ
Download Telegram
This channel will provide basic programing language to deep one in a few days we will start posting
HTML5 tutorial ዛሬ እንጀምራለን

What's HTML
language used to describe the structure of Web pages using markup.

Note:-
A markup language consists of markup tags which tells the browser how to structure / display a particular document.

While HyperText refers to the process of linking one or more WebPages with each other.

A typical HTML document will have following structure:(መሠረታዊ ቅጹ)
<!Doctype html>
<html>
<head>
<title>HTML Document Structure
</title>
</head>
<body>
<p>Hello World</p>
</body>
</html>
CSS tutorial ዛሬ እንጀምራለን

What's CSS
CSS stands for Cascading Style Sheets

CSS describes how HTML elements are to be displayed on screen, paper, or in other media

CSS saves a lot of work. It can control the layout of multiple web pages all at once

External stylesheets are stored in CSS files

CSS is a language that describes the style of an HTML document.

CSS describes how HTML elements should be displayed.

This tutorial will teach you CSS from basic to advanced.

Basic structure looks like this
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}

h1 {
color: white;
text-align: center;
}

p {
font-family: verdana;
font-size: 20px;
}
</style>
</head>
<body>

<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>

</body>
</html>

╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
Programming ማለት በሌላ አባባል አማርኛ ኦሮሚኛ..ወዘተ እንደምንለው programing ደሞ ከ computer ጋ የመግባቢያ ቛንቛ ነው::

ሰው ከ ሰዉ ጋ በብዙ ቛንቛ እንደሚግባባ እንድሁም ሰው ከ computer ጋ በብዙ ቛንቛ ይግባባል የቛንቛ አይነቶቹም C, C++, Java, Payton....ወዘተ ናቸዉ::

ስለዚህ programming መማር ማለት ልክ ቛንቛ እንደ መማር ነው::

ስለዚህ programming ለመማር የተለየ ተሰጥሮ አይጠቅም ሚጠይቀው ጊዜን ብቻ ነው::

╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
4_5839445120553845857.apk
2.3 MB
በእጆ ላይ በምገኝ አንድሮይድ ስልክ በHTML ድንቅ ድህረ ገፅ ይፍጠሩ።📱ፕሮግራምንግ በእጆ ነው ። ከዝቀደም እዳልነው ፕሮግራሚን ለመልመድ ከእኛ ሚጠበቀው ግዜያችንን መስጠት ቡቻ ነው::

ለተጨማሪ መረጃ inbox me @z_josi

@ethio_programmers_zone
Sublime Text Build 3200 x64 Setup.exe
10.4 MB
ይሄ compiler (code መጻፍያ ሶፍትዌር)ነው
ይህን ሶፍትዌር በመጠቀም ድረገጽ...ወዘተ መስራት እንችላለን.
@ethio_programmers_zone
Creating a WebPage:
Web pages can be created and modified by using various HTML Code Editors like:
1. Notepad++
2. Sublime
3. Eclipse
4. Visual Studio
5. Dream Weaver

However for learning HTML it is recommended to use Notepad++ and sublime

╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
1. open code editor and past the below code

<!Doctype html>
<html>

<head>

<title>HTML Document Structure</title>

</head>

<body>

<p>Hello World</p>

</body>

</html>

2. Save the file with extension .html or .htm
e.g.. practice.html

3. Open the file in any browser

╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
እንኳን ለመዳኒታችን ለእየሱስ ክርስቶስ የትንሳኤ መታሰበያ በአል በሰላም አደረሳቾ፡፡

"ሕያዋን ከሞታን መካከል ስለ ምን ትፈልጋላችሁ ተንሥቶአል እንጂ በዚ የለም፡፡ የሰው ልጅ በኃጥያተኞች እጅ አሳልፎ ሊሰጥና ሊሰቀል በሦስተኛው ቀን ሊነሳ ግድ ነው እያለ በገሊላ ሳለ ለእናንተ እንደ ተናገረ አስቡ፡፡"
ሉቃ. 24፡5-7
መልካም የትንሳኤ መታሰበያ በአል ይሁንላችሁ

👑👑👑👑👑👑👑👑👑👑👑👑👑👑
👑👑👑👑👑👑👑

╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
ዛሬ ስለ style ወይም ስለ css እንማራለን
CSS is used to provide styling of the documents.

We can include CSS in our HTML Documents in 3 ways:-

1. External StyleSheet:
All the stylesheet rules are placed in a separate file with .css extension.
The link element is used to include an external stylesheet file in the HTML document.

<!Doctype html>
<html>
<head>
<link type = "text/css" href = "myStyle.css" />
</head>
<body>
<p>Hello World!!!</p>
</body>
</html>


2. Internal StyleSheet:
CSS rules are put into an HTML document using the <style> element. This tag is placed inside <head>...</head> tags.
Rules defined using this syntax will be applied to all the elements available in the document.

<!Doctype html>
<html>
<head>
<style> p{ color:#ff00ff } </style>
</head>
<body>
<p>Hello World!!!</p>
</body>
</html>


3. Inline StyleSheet:
CSS rules are applied to an HTML element using the style attribute of an element.

<!Doctype html>
<html>
<head>
</head>
<body>
<p style ="color:#ff0ff">Hello World!!!</p>
</body>
</html>

╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
Please open Telegram to view this post
VIEW IN TELEGRAM
HTML Elements:-
The building blocks of HTML Pages are HTML elements which contain three main parts: opening tag, content and closing tag.
These tags are enclosed within angle braces.
Opening Tag:
This consists of the name of the element, wrapped in opening and closing angle brackets.
It states where the element begins or starts to take effect.

Content:
This is the content of the element.

Closing Tag:
This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends.

Syntax:
<tag> content </tag>.
Note:-
Except few tags, most of the tags have their corresponding closing tags.
Empty HTML Elements:- HTML elements with no content are called empty elements.
In HTML, using a closing tag on an empty element is usually invalid. 

Syntax:
<tag /> 

E.g.
<br/> , <hr/> ,<img .../> etcNested HTML Elements:-
Puting Elements inside an element is called as nesting.
Nesting of Elements is possible in HTML.
But you need to ensure that nesting is proper.i.e. The opening and closing of Tags needs to be proper.
The order of the Opening tags is opposite to that of the closing tag

E.g
<p>My Name is <b>Arjun</b></p>
As it can be seen the tag which is opened first is closed last.
Types of Elements:-
All the HTML elements can be categorized into two categories:

Block Level Elements:
A block-level element is an HTML element that begins a new line on a Web page and extends the full width of the available horizontal space of its parent element.
E.g:- 
<p> , <div> , <hr> , <table> , <header> etc.

Inline Elements:
A inline element is an HTML element that begins within a line on a Web page and its width only extends as far as it is defined by its tags.
E.g:- 
<a> , <script> , <label> , <img> etc.

#Share & #join
╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
🔱What is Dark Net ?

Darknet is an overlay network that can only be accessed using specific software,configurations,or authorization.

It is part of the Deep Web, because its contents are not accessible through search engines.But it is something more, it is anonymous.It hosts anonymous websites.

Yeah, you wouldn't know who the owner is unless he explicitly reveal his information.

It offers full anonymity to users too.

Darknet anonymity is usually achieved using an onion network'.

l am sure you have cut an onion once in your lifetime and you had been crazy about the number of layers it has, same happens when you use an onion network.

There are numbers of encryption layers that hide your true identity.

🔱Use of dark web

Ok,so you have grasped what Darknet is, Now you may ask me why should you use it.

Well the reason could be any of them:

1.To better protect the privacy right of citizens from targeted and mass surveillance.

2.Whistleblowing and news leaks

3.Hacking and Computer Crime. Maybeyou may want tochat with the most dangerous of hackers.

4.Sale of restricted goods.

5.File sharing.

🔱How to access dark web


Well the most popular way to access Darknet is by using TOR browser.

Technically, it stands for The Onion Router' and it is as simple as installing a new browser.

After that you would need a URL or directory that contains URLs to different websites or class of websites so that you know what to type in into the browser's address bar.

You can easily get URLs in Onion Directory of Darknet
at http://am4wuhz3zifexz5u.onion/ or just google for DarknetSites.

Make sure you use TOR browser.
❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️
THIS TUTORIAL IS MADE FOR LEARNING PURPOSE ONLY WE DON'T TAKE THE RISK
❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️❗️

╭══•:|★✧♡🖥♡✧★|: ══╮
@ethio_programmers_zone
@ethio_programmers_zone
@ethio_programmers_zone
╰══•:|★✧♡♡✧★|:  ══╯
🖥 What is Java ?

Java is a popular general-purpose programming language and computing platform.

It is fast, reliable, and secure.

According to Oracle, the company that owns Java, Java runs on 3 billion devices worldwide.

Considering the number of Java developers, devices running Java, and companies adapting it, it's safe to say
that Java will be around for many years to come.

It is a highlevel programming language originally developed by Sun Microsystems and released in 1995.

Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.

The new J2 versions were renamed as Java SE, Java EE, and Java ME respectively. Java is guaranteed to be Write Once, Run Anywhere.

Features of Java

These are the following feature come with Java:

Object Oriented

Platform Independent

Simple

Secure

Architecture-neutral

Portable

Robust

Multithreaded

Interpreted

High Performance

Distributed

Dynamic

🖥 What is the use of java ?

Java technology is a highlevel programming and a platform independent language.

Java is designed to work in the distributed environment on the Internet.

Java has a GUI features that provides you better look and feel over the C++ language, moreover it is easier to use than C++ and works on the concept of object-oriented programming model.

Java enable us to play online games, video, audio, chat with people around the world, Banking Application, view 3D image and Shopping Cart.

Java is a well known technology which allows you for software designed and written only once for an virtual machine to run on a different computers, supports various Operating System like Windows PCs, Macintoshes, and Uix computers.

╭══•:|★✧♡📖♡✧★|: ══╮
              @zetseat_youth 
              @zetseat_youth
              @zetseat_youth
╰══•:|★✧♡📃♡✧★|:  ══╯