HTML and CSS Reference
In-Depth Information
<div class="editor-field">
@Html.EditorFor(m => m.Name)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.Birthday)
</div>
<div class="editor-field">
@Html.EditorFor(m => m.Birthday)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.Homepage)
</div>
<div class="editor-field">
@Html.EditorFor(m => m.Homepage)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.Phone)
</div>
<div class="editor-field">
@Html.EditorFor(m => m.Phone)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.Score)
</div>
<div class="editor-field">
@Html.EditorFor(m => m.Score)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.Satisfaction)
</div>
<div class="editor-field">
@Html.EditorFor(m => m.Satisfaction)
</div>
<div>
Custom range
<input type="range" id="CustomRange" name="CustomRange"
class="range" style="width: 50px; height: 200px"
min="0" max="200" step="20" />
</div>
<p>
<input type="submit" value="Submit" />
</p>
<div>
<progress id="FormProgress" value="0" max="100">
<strong>Progress: 60%</strong>
</progress>
</div>
Search WWH ::




Custom Search