Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sesesol committed May 2, 2024
0 parents commit 8605957
Show file tree
Hide file tree
Showing 4 changed files with 182 additions and 0 deletions.
131 changes: 131 additions & 0 deletions Test-Md.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
<h1 id="top-doc">Heading1</h1>

# Heading1

## Heading2

### Heading3

#### Heading4

##### Heading5

###### Heading6

<a href="#highlight">Highlight</a>
---

# Menu

- Menu 1
- Menu 2
- Item 2.1
- Item 2.1.1
- Item 2.1.2
- Item 2.2
- Menu 3

<ul>
<li>HTML Menu 1</li>
<li>HTML Menu 2
<ul>
<li>HTML Menu Item 2.1</li>
<li>HTML Menu Item 2.2</li>
</ul>
</li>
<li>HTML Menu 3</li>
</ul>

1. Ordered Menu 1
2. Ordered Menu 2
1. Orderd Menu 2.1
1. Item 2.1.1
1. Item 2.1.2
2. Orderd Menu 2.2
3. Ordered Menu 3

---

# <h1 id="highlight">Highlight</h1>

- This Code is `Javascript`
- This **Char** is __Bold__.
- This *Char* is _Italic_.
- This ***Char*** is ___Bold and Italic___.

```diff
- This Code Has Removed

+ This Code Has Added
```

```javascript
console.log("Hello");
```

> Hello Im **Mohammad Zolghadr**
>> Im `Frontend Developer`

---

# Links and Image



## links
- HTML Tag : <a href="https://faradars.org">Go To Site</a>

- MD Code : [Go To Site](https://faradars.org)

- MD Code Part 2 :

[var_link_name]:https://faradars.org
[Go To Faradars Website][var_link_name]

- Link to Some Part of Document <a href="#top-doc">Go To Top</a>

## Images

- <img src="https://camo.githubusercontent.com/b12ca1a002b68efce8e581dd5705400ea5aeb0818ff413652009b7cc2391193e/68747470733a2f2f66617261646172732e6f72672f77702d636f6e74656e742f75706c6f6164732f323032332f30332f30342f363430333730633661653465622d66767075623136342d706e672e706e67" />

- ![Go To Site](https://camo.githubusercontent.com/b12ca1a002b68efce8e581dd5705400ea5aeb0818ff413652009b7cc2391193e/68747470733a2f2f66617261646172732e6f72672f77702d636f6e74656e742f75706c6f6164732f323032332f30332f30342f363430333730633661653465622d66767075623136342d706e672e706e67)


- [![Go To Site](https://camo.githubusercontent.com/b12ca1a002b68efce8e581dd5705400ea5aeb0818ff413652009b7cc2391193e/68747470733a2f2f66617261646172732e6f72672f77702d636f6e74656e742f75706c6f6164732f323032332f30332f30342f363430333730633661653465622d66767075623136342d706e672e706e67)](https://faradars.org)





# Table

| Col 1 | Col 2 | Col 3 |
|--|--|--|
|Row 1 - Col 1 | Row 1 - Col 2 | Row 1 - Col 3|
|Row 2 - Col 1 | Row 2 - Col 2 | Row 2 - Col 3|
|Row 3 - Col 1 | Row 3 - Col 2 | Row 3 - Col 3|


# Details

<details>
<summary>Menu Item</summary>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li><details>
<summary>Item 4</summary>
<ul>
<li><a href="#highlight">Highlight</a></li>
<li>Item 4.2</li>
<li>Item 4.3</li>
<li>Item 4.4</li>
</ul>
</details></li>
</ul>
</details>



17 changes: 17 additions & 0 deletions TestProject/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# این یک پروژه تستی برای فرادرس است

# توضیحات

این پروژه یک پروژه تستی است که فقط شامل یک صفحه html است با یک متن ساده

# تکنولوژی ها

توی این پروژه از چه تکنولوژی هایی استفاده شده

- Html
- Css
- Git

# پیش نمایش

مشاهده دمو : <a href="https://faradars-github-test.netlify.app">دمو</a>
18 changes: 18 additions & 0 deletions TestProject/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!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" />
<link rel="stylesheet" href="./style.css" />
<title>Test Project</title>
</head>
<body>
<p>
Hello, I hope you are well. My name is Mohammad Zolghadr and this is a
tutorial for learning how to create a professional Github profile for
students of Faradars
</p>
<button>Go To Github</button>
</body>
</html>
16 changes: 16 additions & 0 deletions TestProject/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
display: flex;
align-items: center;
justify-content: center;
background-color: #212121;
height: 95vh;
padding: 0 200px;
}

p {
font-size: 1.5rem;
font-family: monospace;
text-align: justify;
line-height: 150%;
color: #aaa;
}

0 comments on commit 8605957

Please sign in to comment.