Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# rsschool-cv
cv for RS task
Curriculum Vitae for RS task

https://instagetwo.github.io/rsschool-cv/
55 changes: 55 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# rsschool-cv

# Daria Borzova

## Contacts

- **Location:** Moscow, Russia
- **Phone:**+7 958 560 05 20
- **Email:** borzovadarian@yandex.ru
- **Telegram:** @daryaborzova

## About Me

I've been working in different spheres and when I have free time I devote it to developing new skills such as programming. I get very excited when my code works.

## Skills

- HTML
- CSS
- JavaScrips(Basic)
- Figma

## Code Example

```
Create a function which answers to the question "Are you playing banjo?"
If your name starts with letter "R" or lower case "r", you are playing banjo!
The function takes a name as its only argument, and returns one of the following strings:
name + " plays banjo"
name + " does not play banjo"**
```

```
function areYouPlayingBanjo(name){
if(name.startsWith('R')|| name.startsWith('r')){
return name + ' plays banjo';
}
return name + ' does not play banjo';
}
```

## Experience

No commerce experience yet.

## Education

- **University**: Moscow State Linguistic University
- **Courses**:
+ FreeCodeCamp
+ Geekbrains

## Languages

- **English** - C1
19 changes: 19 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV</title>
</head>
<body>
<div class="wrapper">
<h1>Daria Borzova</h1>
<h2>About Me</h2>
<p>
I've been working in different spheres and when I have free time I
devote it to developing new skills such as programming. I get very
excited when my code works.
</p>
</div>
</body>
</html>
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}