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
103 changes: 103 additions & 0 deletions test_task/1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Анкета Левитской Ольги</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div id='area'>
<div id='text'>
<div id='header1'>Анкета участника
<div id='header2'>
Курс «Разработка интерфейсов»
</div></div> <!--добавить в input name, tabindex-->
<div class='question'>
Фамилия, Имя:
<div class='input'>
<input type="text" value = 'Левитская Ольга' size="65" />
</div>
</div>

<div class='question'>
E-mail:
<div class='input'>
<input type="text" value = '[email protected]' size='65' />
</div>
</div>

<div class='question'>
Телефон:
<div class='input'>
<input type="text" maxlength="11" value = '89222036213' size='65' />
</div>
</div>

<div class='question'>
Вуз, факультет, специализация:
<div class='input'>
<input type="text" value = 'УрФУ, мат-мех, компьютерная безопасность' size='65' />
</div>
</div>

<div class='question'>
Год поступления:
<div class='input'>
<input type="text" value = '2009' maxlength="4" size='65' />
</div>
</div>

<div class='question'>
Год окончания:
<div class='input'>
<input type="text" value = '2015' maxlength="4" size='65' />
</div>
</div>

<div class='question'>
Какие языки программирования, технологии, среды разработки вы используете? <br/>Какие у вас есть предпочтения?
<div class='input'>
<textarea name="comment" cols="50" rows="4">Предпочитаю C++, но изучала также JAVA, PERL, ASSEMBLER, HTML, JSCRIPT, MS SQL;
в качестве среды разработки использую Visual Studio 2010, Eclipse, Adobe Dreamweaver CS6
</textarea>
</div>
</div>

<div class='question'>
Опыт работы <br/>(если у вас есть опыт работы, пожалуйста, расскажите о функциях и задачах, которые выполняли или выполняете):
<div class='input'>
<input type="text" value = 'Без опыта работы' size='65' />
</div>
</div>

<div class='question'>
Опыт разработки ПО <br/>(расскажите о ваших программах, сайтах, проектах, которые вы создали в рамках университета, работы или просто для себя, друзей, знакомых; если таких много, выберите самые важные и интересные, на ваш взгляд):
<div class='comment'>
<textarea name="comment" cols="50" rows="4" >В рамках университетской программы писала сайт "о себе", позже изучала статьи, пробовала для себя разные интересности, которые находила, связанные с вёрсткой и дизайном.
</textarea>
</div>
</div>

<div class='question'>
Почему вы хотите принять участие в курсе "Разработка интерфейсов"?
<div class='comment'>
<textarea name="comment" cols="50" rows="6">Мне интересно направление "Интерфейсы" в целом. И в первую очередь я хочу научиться проектированию. Но считаю, что проектирование и разработка в данном случае идут рука об руку, поэтому хочу научиться и грамотной разработке тоже.
</textarea>
</div>
</div>

<div class='question'>
Откуда вы узнали о курсах?
<div class='input'>
<input type="text" value = 'Увидела объявление на стенах факультета' size='65' />
</div>
</div>

<div class='but'>
<input type="button" value="Done" />
</div>
</div>
</div>
</body>
</html>
Binary file added test_task/button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions test_task/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
@charset "utf-8";
body {
margin:0px;
padding:0px;
background-image:url(wallpaper_1024x768_1221.png);
background-repeat: repeat
}

#text{

position: static;
text-align: left;
padding-left: 15%;
width: 70%;
}

#area{
opacity: 0.6;
margin-left: 10%;
padding: 20px;
background-image: url(text_bg2.jpg);
width: 80%;
border-radius: 40px;
}

#header1{
font: 200% serif;
}
#header2{
font: 150% fantasy;
margin-bottom: 20px;
}

.question{
margin-top: 10px;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-weight: bold;
}

.input{
font: message-box;
border-radius: 40px;
}

textarea{
resize: none;
}
Binary file added test_task/text_bg2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test_task/wallpaper_1024x768_1221.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.