27 lines
870 B
Plaintext
27 lines
870 B
Plaintext
|
|
@{
|
|
ViewData["Title"] = "Hello, World!";
|
|
}
|
|
|
|
<article>
|
|
<div class="block intro">
|
|
<div class="content">
|
|
<p style="font-family: 'Press Start 2P'">Hello, World!</p>
|
|
<p>My name is Michael<br/>
|
|
I'm a C# developer<br />
|
|
and this is my website.</p>
|
|
</div>
|
|
<img class="background" src="~/images/cvbg.png"/>
|
|
</div>
|
|
<div class="block sut">
|
|
<div class="content">
|
|
<p>Now I'm studying at The Bonch-Bruevich Saint-Petersburg State University of Telecommunications on Infocommunication Systems bachelor's degree</p>
|
|
</div>
|
|
<img class="background" src="~/images/sut.jpg"/>
|
|
</div>
|
|
</article>
|
|
|
|
<link rel="stylesheet" type="text/css" href="~/css/AboutMe.css" />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap&subset=cyrillic">
|
|
|
|
<partial name="~/Views/Shared/ContactsBlock.cshtml"/> |